-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (36 loc) · 1.07 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
[project]
name = "jaxadi"
description = "**JaxADi** is a powerful Python library designed to bridge the gap between `casadi.Function` and JAX-compatible functions."
version = "0.3.0"
authors = [
{ name = "Lev Kozlov", email = "[email protected]" },
{ name = "Igor Alentev", email = "[email protected]" },
]
dependencies = ["casadi", "jax"]
readme = "README.md"
requires-python = ">=3.10"
optional-dependencies = { "dev" = ["pre-commit", "pytest"] }
[project.urls]
homepage = "https://github.com/based-robotics/jaxadi"
repository = "https://github.com/based-robotics/jaxadi.git"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["jaxadi*"]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]