-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 2.03 KB
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
79
80
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "brainpy"
description = "BrainPy: Brain Dynamics Programming in Python"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "BrainPy Team", email = "chao.brain@qq.com" }
]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
keywords = [
"computational neuroscience",
"brain-inspired computation",
"brain modeling",
"brain dynamics modeling",
"brain dynamics programming"
]
dependencies = [
"numpy>=1.15",
"jax",
"tqdm",
"brainstate>=0.2.7",
"brainunit>=0.2.0",
"brainevent>=0.0.7",
"braintools>=0.0.9",
'brainpy_state>=0.0.3',
]
dynamic = ['version']
[project.urls]
"Bug Tracker" = "https://github.com/brainpy/BrainPy/issues"
"Documentation" = "https://brainpy.readthedocs.io/"
"Source Code" = "https://github.com/brainpy/BrainPy"
[project.optional-dependencies]
cpu = ["jax[cpu]", 'brainevent[cpu]']
cuda12 = ["jax[cuda12]", 'brainevent[cuda12]']
cuda13 = ["jax[cuda13]", 'brainevent[cuda13]']
tpu = ["jax[tpu]", 'brainevent[tpu]']
[tool.setuptools]
package-dir = { "" = "." }
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"lib*",
"dev*",
"docs*",
"tests*",
"docker*",
"examples*",
"scripts",
"images",
"dist*",
"bug*",
]
[tool.setuptools.dynamic]
version = { attr = "brainpy.__version__" }