-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.43 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "forward"
readme = "README.md"
authors = [
{name = "Gabriel Belouze", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.9" # necessary for type hints
license = {"file" = "LICENSE"}
dynamic = ["version", "description"]
dependencies = [
"pandas >= 1.4.2",
"matplotlib >= 3.5.2",
"autograd >= 1.4",
"numpy >= 1.22.3",
"click >= 8.1.3",
"rich >= 12.4.1"
]
[tool.flit.module]
name = "forward"
[project.urls]
source = "https://github.com/gbelouze/forward"
tracker = "https://github.com/gbelouze/forward/issues"
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"pre-commit"
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''