-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 841 Bytes
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
[project]
name = "thermox"
version = "0.0.5"
description = "Exact OU processes with JAX"
readme = "README.md"
requires-python =">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Sam Duffield", email = "sam@normalcomputing.com"},
{name = "Kaelan Donatella", email = "kaelan@normalcomputing.com"},
]
keywords = ["jax", "linear algebra", "ou process", "stochastic process"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: Apache Software License",
]
dependencies = ["jax>=0.4.0", "jaxlib>=0.4.0", "fmmax>=1.1.1"]
[project.optional-dependencies]
test = ["pre-commit", "pytest-cov", "ruff", "optax", "mypy"]
[tool.setuptools]
packages = ["thermox"]
[tool.ruff]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F821"]