-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (104 loc) · 2.77 KB
/
pyproject.toml
File metadata and controls
120 lines (104 loc) · 2.77 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"dev*",
"develop*",
"docs*",
"build*",
"dist*",
"examples*",
"legacy*",
"braincell.egg-info*",
"braincell/__pycache__*",
"tests*"
]
[tool.setuptools.dynamic]
version = { attr = "braincell._version.__version__" }
[project]
name = "braincell"
description = "Biologically Detailed Brain Cell Modeling in JAX"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "BrainCell Developers", email = "chao.brain@qq.com" }]
keywords = [
"dendritic computation",
"dendritic modeling",
"brain modeling",
"neuron simulation",
]
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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"numpy>=1.15",
"brainunit>=0.0.8",
"brainstate>=0.2.0",
"brainevent>=0.0.7",
"brainpy>=2.7.5",
"braintools>=0.1.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/chaobrain/braincell"
Documentation = "https://braincell.readthedocs.io/"
"Bug Tracker" = "https://github.com/chaobrain/braincell/issues"
"Source Code" = "https://github.com/chaobrain/braincell"
[project.scripts]
braincell-neuromorpho = "braincell.io.neuromorpho.cli:main"
[project.optional-dependencies]
# JAX backends
cpu = ["jax[cpu]"]
cuda12 = ["jax[cuda12]"]
cuda13 = ["jax[cuda13]"]
tpu = ["jax[tpu]"]
# Visualization: 2D (matplotlib) + 3D (pyvista / plotly) backends
vis = [
"matplotlib",
"networkx",
"pyvista",
"plotly",
]
# Advanced ODE solvers in braincell.quad (DOPRI, TSIT, Kvaerno, ...)
quad = ["diffrax"]
# NeuroMorpho.Org client in braincell.io.neuromorpho
io = ["requests"]
# Convenience aggregator: everything a user-facing install might need
all = [
"matplotlib",
"networkx",
"pyvista",
"plotly",
"diffrax",
"requests",
]
# Testing + development dependencies
testing = [
"pytest",
"jax",
"matplotlib",
"networkx",
"pyvista",
"plotly",
"diffrax",
"requests",
"pytest-mpl",
"pytest-benchmark",
"hypothesis",
]