-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1012 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "pytorch_extra_mhirano"
version = "0.1.9"
description = ""
authors = ["Masanori HIRANO <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
torch = ">=1.9.0,<3.0.0,!=2.0.1"
scipy = "^1.8.1"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
isort = "^5.10.1"
tox = "^3.24.5"
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
Sphinx = "^4.4.0"
pydata-sphinx-theme = "^0.8.0"
scikit-learn = "^1.1.1"
statsmodels = "^0.13.2"
mypy = "^1.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
skip-magic-trailing-comma = true
exclude = [
".git",
"__pycache__",
"docs",
"build",
"dist",
"examples",
".venv",
"__init__.py"
]
[tool.isort]
profile = 'black'
force_single_line = true
skip = [
".git",
"__pycache__",
"docs",
"build",
"dist",
"examples",
".venv",
"tests/examples"
]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true