-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (90 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
100 lines (90 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"docs*",
"tests*",
"examples*",
"experiments*",
"benchmark*",
"build*",
"dist*",
"dev*",
"brainstate.egg-info*",
"brainstate/__pycache__*",
"brainstate/__init__.py",
]
[project]
name = "brainstate"
description = "A State-based Transformation System for Brain Modeling."
readme = 'README.md'
requires-python = '>=3.11'
authors = [{ name = 'BrainState Developers', email = 'chao.brain@qq.com' }]
classifiers = [
'Natural Language :: English',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
]
keywords = [
'computational neuroscience',
'brain-inspired computing',
'brain simulation',
'brain modeling',
'spiking neural networks',
]
dependencies = [
'numpy>=1.15',
'tqdm',
'brainunit',
'brainevent',
]
dynamic = ['version']
[tool.setuptools.dynamic]
version = { attr = "brainstate._version.__version__" }
[project.urls]
homepage = 'https://github.com/chaobrain/brainstate'
repository = 'https://github.com/chaobrain/brainstate'
"Documentation" = "https://brainstate.readthedocs.io/"
"Source Code" = "https://github.com/chaobrain/brainstate"
"Bug Tracker" = "https://github.com/chaobrain/brainstate/issues"
[project.optional-dependencies]
cpu = [
'jax[cpu]>=0.6.0',
'brainunit',
'brainevent',
]
cuda12 = [
'jax[cuda12]>=0.6.0',
'brainunit',
'brainevent',
]
cuda13 = [
'jax[cuda13]>=0.6.0',
'brainunit',
'brainevent',
]
tpu = [
'jax[tpu]>=0.6.0',
'brainunit',
'brainevent',
]
testing = [
'absl-py',
'pytest',
'jax>=0.6.0',
'brainunit',
'brainevent',
]