-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
80 lines (75 loc) · 1.9 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
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>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Jaxley"
version = "0.5.0"
description = "Differentiable neuron simulations."
authors = [
{ name = "jaxleyverse", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Adaptive Technologies",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"""License :: OSI Approved :: Apache Software License""",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.10"
readme = "README.md"
keywords = ["neuroscience", "biophysics", "simulator", "jax"]
dependencies = [
"jax",
"matplotlib",
"networkx",
"numpy",
"pandas>=2.2.0",
"tridiax",
]
[project.optional-dependencies]
doc = [
"jupyter_contrib_nbextensions",
"notebook <= 6.4.12",
"traitlets <= 5.9.0",
"ipython <= 8.9.0",
"mkdocs",
"mkdocs-material",
"markdown-include",
"mkdocs-redirects",
"mkdocstrings[python]>=0.18",
"mike",
"sphinx",
"sphinx-autobuild",
"sphinx_autodoc_typehints",
"sphinx-math-dollar",
"myst-nb",
"jupytext",
"optax",
"sphinx-book-theme",
]
dev = [
"black",
"isort",
"jaxley-mech",
"neuron",
"pytest",
"pyright",
"optax",
"jupyter",
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (T > 10s)",
]
[tool.isort]
profile = "black"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)