-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.02 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
42
43
44
45
46
47
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=6.2",
"Cython",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
name = "neuroboros-extra"
dynamic = ["version"]
authors = [
{ name="Ma Feilong", email="[email protected]" },
]
description = "Cython extensions for neuroboros"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
]
[project.urls]
"Homepage" = "https://neuroboros.github.io/"
"Bug Tracker" = "https://github.com/neuroboros/neuroboros-extra/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/nb_extra/_version.py"
[tool.codespell]
skip = '.git,*.pdf,*.svg'
[tool.isort]
profile = "black"