-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.44 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
[project]
name = "networkunit"
description = "A SciUnit library for validation testing of spiking networks."
version = "0.2.2"
readme = "README.rst"
authors = [
{ name = "NetworkUnit authors and contributors", email = "[email protected]" }
]
requires-python = ">=3.8"
dependencies = [
"sciunit >= 0.2.8",
"elephant >= 0.7.0",
"neo >= 0.9",
"networkx >= 2.1",
"tabulate >= 0.8.2",
"seaborn >= 0.8.1",
"numpy >= 1.15.3",
"opencv-python"
]
[metadata]
description-file = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD-3-Clause",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
"Homepage" = "https://github.com/INM-6/networkunit"
"Bug Tracker" = "https://github.com/INM-6/networkunit/issues"
[project.scripts]
[project.optional-dependencies]
dev = [
"black",
"bump2version",
"flake8",
"mypy",
"pre-commit",
"pydocstyle",
"pylint",
"pytest",
"pytest-black",
"pytest-cov",
"pytest-flake8",
"pytest-mypy",
"pytest-pydocstyle",
"pytest-pylint",
"pytest-xdist",
]
docs = [
"sphinx",
"sphinx-autodoc-typehints",
"nbsphinx",
"numpydoc>=1.1.0",
"sphinx-tabs>=1.3.0",
"sphinx-argparse>=0.4.0",
"pygments",
"recommonmark",
]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]