forked from meadowdata/meadowflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (78 loc) · 2.36 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "meadowdata"
version = "0.1.0"
description = "A platform for data scientists, including a database and a job scheduler"
authors = ["Richard Lee <[email protected]>"]
homepage = "https://github.com/meadowdata/meadowdata"
repository = "https://github.com/meadowdata/meadowdata"
keywords = []
packages = [
{ include = "meadowflow", from = "src" },
{ include = "meadowdb", from = "src" },
{ include = "meadowgrid", from = "src" },
]
[tool.poetry.scripts]
meadowgrid_coordinator = 'meadowgrid.coordinator_main:command_line_main'
meadowgrid_agent = 'meadowgrid.agent_main:command_line_main'
meadowflow = 'meadowflow.server.server_main:command_line_main'
meadowrun = 'meadowgrid.run_one_job_main:command_line_main'
[tool.poetry.dependencies]
python = "^3.9"
duckdb = "^0.3.0"
pyarrow = ">=6,<8"
fastparquet = ">=0.7.1,<0.9.0"
pandas = "^1.3.1"
grpcio = "^1.39.0"
protobuf = "^3.18.1"
cloudpickle = "^2.0.0"
aiodocker = "^0.21.0"
aiohttp = "^3.8.0"
psutil = "^5.8.0"
boto3 = "^1.20.17"
fabric = "^2.6.0"
types-paramiko = "^2.8.13"
aiobotocore = "^2.1.2"
types-aiobotocore = {extras = ["essential"], version = "^2.1.1"}
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
mypy = "0.*"
black = {version = "^22.1", allow-prereleases = true}
grpcio-tools = "^1.39.0"
pandas-stubs = "^1.2.0"
types-protobuf = "^3.19.12"
types-pytz = "^2021.3.5"
mypy-protobuf = "^3.0.0"
flake8 = "^4.0.1"
pytest-asyncio = "^0.18.2"
types-psutil = "^5.8.20"
flake8-noqa = "^1.2.1"
boto3-stubs = "^1.21.11"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
log_level = "DEBUG"
log_cli = true
log_cli_level = "DEBUG"
addopts = "-vvv --strict-markers"
[tool.mypy]
files = "src,tests"
show_column_numbers = true
show_error_codes = true
pretty = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
allow_redefinition = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [ "meadowdb.*", "meadowflow.*", "meadowgrid.*"]
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
strict_equality = true
[[tool.mypy.overrides]]
module = ["duckdb", "grpc.*", "boto3", "cloudpickle", "fabric"]
ignore_missing_imports = true