forked from jaxleyverse/jaxley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (82 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
87 lines (82 loc) · 2.33 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Jaxley"
version = "0.11.5"
description = "Differentiable neuron simulations."
authors = [
{ name = "jaxleyverse", email = "jaxleyverse@gmail.com"},
]
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 = [
# See #571 for the pin on the JAX version. Jaxley runs with newer versions of JAX
# but is much slower on CPU. Newer versions can be made equally fast by setting
# `os.environ['XLA_FLAGS'] = '--xla_cpu_use_thunk_runtime=false'` at the beginning
# of a jupyter notebook.
"jax",
"matplotlib",
"numpy",
"pandas>=2.2.0",
"tridiax",
"networkx",
]
[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",
"sphinx-design",
"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)",
"regression: marks regression tests",
"additional_neuron_tests: tests marked as such will not be run by default",
]
[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)