-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.38 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
[tool.poetry]
name = "enchanter"
version = "0.9.0"
description = "Enchanter is a library for machine learning tasks for comet.ml users."
authors = ["Hirotaka Kawashima <khirotaka@vivaldi.net>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://enchanter.readthedocs.io/"
repository = "https://github.com/khirotaka/enchanter"
keywords = ["pytorch", "comet_ml"]
classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.17"
scikit-learn = ">=0.23,<1.1"
tqdm = "^4.41"
tensorboard = "^2.1"
pandas = "^1.0"
netron = { version = ">=4.5,<6.0", optional = true }
comet_ml = { version = "^3.1.3", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7.0"
flake8 = "^4.0"
black = "^22.1"
sphinx-material = "^0.0.35"
sphinx-copybutton = "^0.5"
sphinx-autoapi = "^1.5"
mypy = "^0.931"
hydra-core = "^1.0.3"
[tool.poetry.extras]
comet = ["comet_ml"]
netron = ["netron"]
[tool.black]
line-length = 120
target-version = ["py37", "py38"]
include = '\.pyi?$'
exclude = '''
(
migrations
| .mypy_cache
| .pytest_cache
| .github
| docker
| docs
| examples
| tests
)
'''
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning",
]
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"