-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
42 lines (37 loc) · 928 Bytes
/
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
[tool.poetry]
name = "redshells"
version = "0.0.0" # using poetry-dynamic-versioning
description='Tasks which are defined using gokart.TaskOnKart. The tasks can be used with data pipeline library "luigi".'
authors = ["M3, inc."]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/m3dev/redshells"
repository = "https://github.com/m3dev/redshells"
documentation = ""
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)"
[tool.poetry.dependencies]
python = "^3.7"
gokart = ">=0.1.20"
pandas = "<1.2"
numpy = "*"
scipy = "*"
gensim = "3.8.3"
scikit-learn = "*"
tqdm = "*"
docutils = "==0.15"
optuna = ">=0.6.0"
[tool.poetry.dev-dependencies]
tox = "*"
moto = "*"
testfixtures = "*"
coverage = "*"
tensorflow = ">=1.13.1,<2.0"
[tool.yapf]
based_on_style = "pep8"
column_limit = 160
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"