-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
94 lines (88 loc) · 1.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools >= 64", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bluepyemodel"
authors = [
{name = "Blue Brain Project, EPFL"},
]
description="Blue Brain Python Electrical Modeling Pipeline"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"pandas",
"ipyparallel>=6.3",
"tqdm",
"pyyaml",
"gitpython",
"bluepyopt>=1.14.10",
"bluepyefe>=2.2.0",
"neurom>=3.0",
"efel>=5.5.5",
"configparser",
"neuron>=8.0",
"morph_tool>=2.8",
"morphio",
"fasteners>=0.16",
"jinja2>=3.0.3",
"currentscape>=0.0.11",
]
keywords=[
"computational neuroscience",
"simulation",
"analysis",
"parameters",
"Blue Brain Project",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
[project.optional-dependencies]
luigi = [
"luigi>=3.0",
"luigi-tools>=0.0.12",
]
docs = [
"graphviz",
"sphinx",
"sphinx-bluebrain-theme",
"luigi>=3.0",
"luigi-tools>=0.0.12",
]
test = [
"pytest>=6.2",
"dictdiffer>=0.8",
]
nexus = [
"nexusforge>=0.8.2",
"entity_management>=1.2",
"pyJWT>=2.1.0",
]
all = [
"luigi>=3.0",
"luigi-tools>=0.0.12",
"nexusforge>=0.8.2",
"entity_management>=1.2",
"pyJWT>=2.1.0",
"pytest>=6.2",
"dictdiffer>=0.8",
]
[project.urls]
Homepage = "https://github.com/BlueBrain/BluePyEModel"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests",]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"