-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.46 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
[tool.poetry]
name = "aporia-importer"
version = "v1.0.32"
description = "Import data from cloud storage to Aporia"
authors = []
readme = "README.md"
repository = "https://github.com/aporia-ai/aporia-importer"
[tool.poetry.dependencies]
python = "^3.8"
dask = { version = "^2022.2.1", extras = ["complete"] }
pyarrow = "^9.0.0"
PyYAML = "^6.0"
s3fs = {version = "^2022.8.2", optional = true}
dask-kubernetes = {version = "^2022.7.0", optional = true}
aporia = {version = "^2.9.0", extras = ["training", "pandas"]}
[tool.poetry.dev-dependencies]
pytest = "~7.1"
pytest-asyncio = "~0.18"
isort = "~5.10"
black = "~22.6"
mypy = "~0.961"
flake8 = "~4.0"
flake8-import-order = "~0.18"
flake8-bugbear = "~22.7"
flake8-bandit = "~3.0"
flake8-annotations = "~2.9"
flake8-docstrings = "~1.6"
darglint = "~1.8"
[tool.poetry.scripts]
aporia-importer = 'aporia_importer.main:main'
[tool.poetry.extras]
s3 = ["s3fs"]
kubernetes = ["dask-kubernetes"]
all = ["s3fs", "dask-kubernetes"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
lexicographical = true
order_by_type = false
group_by_package = true
no_lines_before = ['LOCALFOLDER']
line_length = 100
[tool.mypy]
show_error_codes = true
[[tool.mypy.overrides]]
module = ["nox.*","pytest","pytest_mock","_pytest.*","dask","dask.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"