forked from martenlienen/torchode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 1 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
[build-system]
requires = ["flit_core ~= 3.7"]
build-backend = "flit_core.buildapi"
[project]
name = "torchode"
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">= 3.8"
license = {file = "LICENSE"}
authors = [{name = "Marten Lienen", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
dependencies = [
"sympy ~= 1.10",
"torch >= 2.0",
"torchtyping ~= 0.1.4",
]
[project.optional-dependencies]
test = ["pytest", "numpy ~= 1.22"]
benchmark = ["pytest-benchmark"]
[project.urls]
homepage = "https://github.com/martenlienen/torchode"
[tool.flit.module]
name = "torchode"
[tool.flit.sdist]
exclude = ["tests/"]
[tool.black]
target-version = ["py310"]
[tool.isort]
known_first_party = ["torchode"]
[tool.pytest.ini_options]
testpaths = ["tests"]