-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.19 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
[project]
name = "torchdde"
version = "0.1.2"
description = "DDE numerical solvers in Python."
readme = "README.md"
requires-python =">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "thibault monsel", email = "[email protected]"},
]
keywords = ["torch", "dynamical-systems", "differential-equations", "deep-learning", "neural-differential-equations"]
urls = {repository = "https://github.com/thibmonsel/torchdde" }
dependencies = ["torch", "jaxtyping>=0.2.24", "typing_extensions>=4.5.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["torchdde/*"]
[tool.pytest.ini_options]
addopts = "--jaxtyping-packages=torchdde,beartype.beartype(conf=beartype.BeartypeConf(strategy=beartype.BeartypeStrategy.On))"
markers = ["slow"]
[tool.ruff]
extend-include = ["*.ipynb"]
fixable = ["I001", "F401"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
ignore-init-module-imports = true
select = ["E", "F", "I001"]
src = []
[tool.ruff.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
include = ["torchdde", "tests"]