-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
50 lines (46 loc) · 1.29 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
[build-system]
requires = ["setuptools >= 64", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bluepyefe"
authors = [
{name = "Blue Brain Project, EPFL", email = "[email protected]"},
]
description="Blue Brain Python E-feature extraction"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
dynamic = ["version"]
dependencies = [
"numpy",
"neo",
"matplotlib",
"efel",
"scipy",
"h5py",
"igor2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
keywords = [
"neuroscience",
"BlueBrainProject",
]
[project.urls]
Homepage = "https://github.com/BlueBrain/BluePyEfe"
Source = "https://github.com/BlueBrain/BluePyEfe"
Repository = "https://github.com/BlueBrain/BluePyEfe.git"
Tracker = "https://github.com/BlueBrain/BluePyEfe/issues"
Documentation = "https://bluepyefe.readthedocs.io/en/latest"
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
include = ["bluepyefe"]