-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.8 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{email = "YOUR_EMAIL@example.com", name = "Praneeth Merugu"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics"
]
dependencies = [
"jax>=0.4.38",
"jaxtyping>=0.2.24",
"typing_extensions>=4.5.0",
"equinox>=0.11.10",
"diffrax>=0.7.0",
"lineax>=0.0.5",
"optimistix>=0.0.10"
]
description = "Delay Differential Equation (DDE) solvers in JAX. Autodifferentiable and GPU-capable."
keywords = ["jax", "delay-differential-equations", "dde", "diffrax", "equinox"]
license = {file = "LICENSE"}
name = "diffraxdde"
readme = "README.md"
requires-python = ">=3.10,<4.0"
urls = {repository = "https://github.com/YOUR_USERNAME/DiffraxDDE"}
version = "0.1.0"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pre-commit"
]
[tool.hatch.build]
include = ["diffraxdde/*"]
[tool.pyright]
include = ["diffraxdde", "tests"]
reportIncompatibleMethodOverride = true
reportIncompatibleVariableOverride = false
reportUnnecessaryTypeIgnoreComment = true
[tool.pytest.ini_options]
addopts = "--jaxtyping-packages=diffraxdde,beartype.beartype(conf=beartype.BeartypeConf(strategy=beartype.BeartypeStrategy.On))"
[tool.ruff]
extend-include = ["*.ipynb"]
src = []
[tool.ruff.lint]
fixable = ["I001", "F401", "UP"]
ignore = ["E402", "E721", "E731", "E741", "F722", "UP038"]
ignore-init-module-imports = true
select = ["E", "F", "I001", "UP"]
[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = false