-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyNEMS"
version = "0.0.3"
description = "Fit and evaluate models of sensory encoding and decoding."
readme = "README.md"
authors = [
{ name = "Jacob Pennington", email = "[email protected]" },
{ name = "Stephen David", email = "[email protected]"}
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["neuroscience", "auditory", "sensory", "encoding", "strf"]
dependencies = [
"numpy>=1.24.4",
"scipy>=1.9.0",
"matplotlib>=3.5.2",
"numexpr>=2.8.3",
"numba", "pandas", "requests","h5py",
]
# temp removed
# "numba>=0.57.0"
requires-python = ">=3.9"
#requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["build", "twine", "pytest"]
tf = ["tensorflow[and-cuda] >= 2.9"]
io = ["pandas", "requests","h5py"]
[project.urls]
Homepage = "https://github.com/LBHB/NEMS"
[tool.setuptools.packages.find]
exclude = ["tutorials*", "tests*"]