-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.64 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
[build-system]
requires = ["setuptools >= 64", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bluepymm"
authors = [
{name = "Blue Brain Project, EPFL", email = "[email protected]"},
]
description="Model Management Python Library (bluepymm)"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
dynamic = ["version"]
dependencies = [
"sh",
"bluepyopt",
"matplotlib",
"pandas>=2.0.0",
"numpy",
"ipyparallel",
"lxml",
"h5py",
"pyyaml",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
keywords = [
"optimisation",
"neuroscience",
"BlueBrainProject"
]
[project.urls]
Homepage = "https://github.com/BlueBrain/BluePyMM"
Source = "https://github.com/BlueBrain/BluePyMM"
Repository = "https://github.com/BlueBrain/BluePyMM.git"
Tracker = "https://github.com/BlueBrain/BluePyMM/issues"
Documentation = "https://bluepymm.readthedocs.io/en/latest"
[project.scripts]
bluepymm = "bluepymm:main.main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
bluepymm = [
"templates/cell_template_neuron.jinja2",
"templates/cell_template_neurodamus.jinja2",
"templates/cell_template_neurodamus_sbo.jinja2",
]
[tool.setuptools.packages.find]
exclude = ["notebook", "tests",]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"