forked from maiaramaaraujo/cobrawap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (73 loc) · 1.67 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
78
79
80
[project]
name = "cobrawap"
description = "Collaborative Brain Wave Analysis Pipeline (Cobrawap)"
version = "0.1.0"
readme = "README.rst"
authors = [
{ name = "Cobrawap authors and contributors", email = "robin.gutzen@outlook.com" }
]
requires-python = ">=3.8"
dependencies = [
"ruamel.yaml >= 0.18.3",
"jinja2 >= 2.10.3",
"scipy >= 1.7.3",
"pygments >= 2.4.2",
"snakemake >= 7.10.0, < 8.0.0",
"h5py",
"shapely",
"elephant >= 1.0.0",
"neo >= 0.10.2, < 0.12",
"nixio >= 1.5.3",
"pillow >= 7.0.0",
"pandas >= 1.2.0",
"scikit-learn >= 1.1.0",
"scikit-image >= 0.20.0",
"matplotlib >= 3.5.1",
"seaborn",
"networkx",
]
[metadata]
description-file = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL-3.0-or-later",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
"Homepage" = "https://cobrawap.readthedocs.io/"
"Bug Tracker" = "https://github.com/INM-6/cobrawap/issues"
[project.scripts]
cobrawap = "cobrawap.__main__:main"
[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",
]
doc = [
"sphinx>=3.3.0",
"numpydoc>=1.1.0",
"sphinx-tabs>=1.3.0",
"sphinx-argparse>=0.4.0",
"sphinx-autodoc-typehints",
"pygments",
"recommonmark",
]
cwl = [
]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]