-
Notifications
You must be signed in to change notification settings - Fork 98
/
pyproject.toml
78 lines (70 loc) · 2.22 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
[build-system]
requires = ["setuptools >= 64", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bluepyopt"
authors = [
{name = "Blue Brain Project, EPFL", email = "werner.vangeit@epfl.ch"},
]
description="Blue Brain Python Optimisation Library (bluepyopt)"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
dynamic = ["version"]
dependencies = [
"numpy>=1.6",
"pandas>=0.18",
"deap>=1.3.3",
"efel>=2.13",
"ipyparallel",
"pickleshare>=0.7.3",
"Jinja2>=2.8",
"Pebble>=4.6.0",
"NEURON>=7.8",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
keywords = [
"optimisation",
"neuroscience",
"BlueBrainProject",
]
[project.optional-dependencies]
all = ["scoop>=0.7", "pyneuroml>=0.5.20", "libNeuroML>=0.3.1", "LFPy>=2.3", "arbor>=0.10"]
tests = ["pyneuroml>=0.5.20", "libNeuroML>=0.3.1", "LFPy>=2.3", "arbor>=0.10"]
scoop = ["scoop>=0.7"]
neuroml = ["pyneuroml>=0.5.20", "libNeuroML>=0.3.1"]
lfpy = ["LFPy>=2.3"]
arbor = ["arbor>=0.10"]
[project.urls]
Homepage = "https://github.com/BlueBrain/BluePyOpt"
Source = "https://github.com/BlueBrain/BluePyOpt"
Repository = "https://github.com/BlueBrain/BluePyOpt.git"
Tracker = "https://github.com/BlueBrain/BluePyOpt/issues"
Documentation = "https://bluepyopt.readthedocs.io/en/latest"
[project.scripts]
bpopt_tasksdb = "bluepyopt:ipyp.bpopt_tasksdb.main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
bluepyopt = [
"ephys/static/arbor_mechanisms.json",
"ephys/templates/cell_template.jinja2",
"ephys/templates/acc/_json_template.jinja2",
"ephys/templates/acc/decor_acc_template.jinja2",
"ephys/templates/acc/label_dict_acc_template.jinja2",
"ephys/examples/simplecell/simple.swc",
"neuroml/NeuroML2_mechanisms/*.nml"
]
[tool.setuptools.packages.find]
exclude = ["examples*"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"