forked from m3dev/gokart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.05 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
[tool.poetry]
name = "gokart"
version = "0.0.0" # using poetry-dynamic-versioning
description="Gokart solves reproducibility, task dependencies, constraints of good code, and ease of use for Machine Learning Pipeline. [Documentation](https://gokart.readthedocs.io/en/latest/)"
authors = ["M3, inc."]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/m3dev/gokart"
repository = "https://github.com/m3dev/gokart"
documentation = "https://gokart.readthedocs.io/en/latest/"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)"
[tool.poetry.dependencies]
python = "^3.7.1"
luigi = "*"
boto3 = "*"
slack-sdk = "^3"
pandas = "*"
numpy = "*"
tqdm = "*"
google-auth = "*"
pyarrow = "*"
uritemplate = "*"
google-api-python-client = "*"
APScheduler = "*"
redis = "*"
matplotlib = "*"
[tool.poetry.dev-dependencies]
tox = "*"
moto = "*"
testfixtures = "*"
coverage = "*"
isort = "^5.7"
yapf = "^0.31"
[tool.isort]
line_length = 160
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"