-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.25 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
# This section describes the requirements of the build/installation
# process itself. Being able to do this was the original reason to
# introduce pyproject.toml
[build-system]
requires = [
"setuptools >=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "odisseo"
version = "0.1.0"
description = "differentiable N-body simulator"
authors = [{ name = "Giuseppe Viterbo" }]
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"sphinx-autodoc2",
"optax >=0.2.0",
"diffrax" >= 0.7.0",
"optimistix >=0.0.1",
"jax >=0.4.35",
"scipy >= 1.0.0",
"astropy >= 6.0.0",
"numpy >= 1.0.0",
"matplotlib >= 3.9.0",
"equinox >= 0.11.0",
"beartype >= 0.19.0",
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"nbval",
]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"myst_nb",
"sphinx_copybutton",
"sphinx_design",
"sphinx_book_theme",
"ipykernel",
"sphinx_mdinclude",
"sphinx_rtd_theme",
"sphinx-autodoc2",
"furo",
]
[tool.setuptools]
packages = [
"odisseo",
]