-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpyproject.toml
65 lines (61 loc) · 2.01 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
[project]
name = "PyNN"
version = "0.12.3"
description = "A Python package for simulator-independent specification of neuronal network models"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "CeCILL http://www.cecill.info"}
authors = [
{name = "The PyNN team", email = "[email protected]"}
]
maintainers = [
{name = "The PyNN team", email = "[email protected]"}
]
keywords = ["computational neuroscience, simulation, neuron, nest, brian2, neuromorphic"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.18.5",
"lazyarray>=0.5.2",
"neo>=0.11.0",
"quantities>=0.12.1",
"morphio"
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "flake8", "wheel", "mpi4py", "scipy", "matplotlib", "Cheetah3", "h5py", "Jinja2"]
doc = ["sphinx"]
examples = ["matplotlib", "scipy"]
plotting = ["matplotlib", "scipy"]
MPI = ["mpi4py"]
sonata = ["h5py"]
neuron = ["neuron", "nrnutils"]
brian2 = ["brian2"]
arbor = ["arbor"]
spiNNaker = ["spyNNaker"]
neuroml = ["libNeuroML"]
[project.urls]
homepage = "http://neuralensemble.org/PyNN/"
documentation = "http://neuralensemble.org/docs/PyNN/"
repository = "https://github.com/NeuralEnsemble/PyNN"
changelog = "http://neuralensemble.org/docs/PyNN/release_notes.html"
download = "http://pypi.python.org/pypi/PyNN"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyNN*"]