-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
pyproject.toml
77 lines (69 loc) · 1.76 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
[tool.poetry]
name = "igel"
version = "0.7.0"
readme = "docs/README.rst"
description = "a delightful machine learning tool that allows you to train, test and use models without writing code"
authors = ["nidhal baccouri <[email protected]>"]
license = "MIT"
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ # Update me
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
importlib_metadata = {version = "^1.6.0", python = ">=3.8"}
pandas = "1.1.1"
PyYAML = "5.3.1"
scikit-learn = "0.23.2"
joblib = "~=0.16.0"
fastapi = "^0.65.2"
uvicorn = "^0.14.0"
click = "^8.0.1"
Pillow = "^8.3.2"
autokeras = "^1.0.16"
skl2onnx = "^1.10.3"
[tool.poetry.dev-dependencies]
pip="20.2.2"
bump2version="1.0.0"
wheel="0.35.1"
watchdog="0.10.3"
flake8="3.8.3"
tox="3.19.0"
coverage="5.2.1"
Sphinx="3.2.1"
twine="3.2.0"
pytest="6.0.1"
pytest-runner="5.2"
darglint = "^1.5.8"
isort = "^5.7.0"
pyupgrade = "^2.19.3"
black = "^21.5b2"
mypy = "^0.902"
bandit = "^1.7.0"
safety = "^1.10.3"
pylint = "^2.6.0"
pydocstyle = "^6.1.1"
pre-commit = "^2.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"igel" = "igel.__main__:cli"
[tool.black]
# https://github.com/psf/black
line-length = 80
target-version = ["py37"]
[tool.isort]
# https://github.com/timothycrosley/isort/
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
sections = "FUTURE,TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
include_trailing_comma = true
default_section = "FIRSTPARTY"
multi_line_output = 3
indent = 4
force_grid_wrap = 0
use_parentheses = true
line_length = 80