-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (83 loc) · 2.78 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (83 loc) · 2.78 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
# Copyright 2026 BrainX Ecosystem Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
[build-system]
requires = ["setuptools"]
# In-tree backend that stamps __version__ from the build/publish date.
build-backend = "calver_backend"
backend-path = ["_packaging"]
[project]
name = "BrainX"
description = "Ecosystem for Brain Simulation."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "BrainX Ecosystem", 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",
"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 simulation",
"brain modeling",
]
dynamic = [
"version",
"dependencies",
]
[project.urls]
Documentation = "https://brainx.chaobrain.com/"
Homepage = "https://github.com/chaobrain/brainx"
"Source Code" = "https://github.com/chaobrain/brainx"
"Bug Tracker" = "https://github.com/chaobrain/brainx/issues"
[project.optional-dependencies]
cpu = ["jax[cpu]", "numba"]
cuda12 = ["jax[cuda12]"]
cuda13 = ["jax[cuda13]"]
tpu = ["jax[tpu]"]
[tool.setuptools.packages.find]
exclude = [
"dev*",
"docs*",
"tests*",
"examples*",
"experiments*",
"benchmark*",
"build*",
"dist*",
"_packaging*",
"BrainX.egg-info*",
"BrainX/__pycache__*"
]
[tool.setuptools.package-data]
BrainX = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "BrainX._version.__version__" }
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
# Tests are co-located beside the package using the suffix style (``*_test.py``),
# so ``pytest BrainX/`` runs the whole ecosystem suite.
python_files = ["*_test.py"]