-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.15 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
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dkpy"
version = "0.1.8"
dependencies = [
"numpy>=1.21.0",
"scipy>=1.7.0",
"control>=0.10.0",
"slycot>=0.6.0",
"cvxpy>=1.5.0",
"joblib>=1.4.0",
"matplotlib>=3.9.0",
]
requires-python = ">=3.7, <3.14"
authors = [
{name="Steven Dahdah", email="steven.dahdah@mail.mcgill.ca"},
{name="James Richard Forbes", email="james.richard.forbes@mcgill.ca"},
]
description = "D-K iteration in Python"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/decargroup/dkpy"
Issues = "https://github.com/decargroup/dkpy/issues"
[project.optional-dependencies]
solvers = ["mosek>=9.2.49"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-continue-on-failure"
doctest_optionflags = "NORMALIZE_WHITESPACE NUMBER ELLIPSIS"
pythonpath = [
"src",
]
python_files = [
"test_*.py",
]
python_functions = [
"test*",
]
testpaths = [
"tests",
"src",
]