-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
92 lines (82 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpcrl"
authors = [
{ name="Filippo Airaldi", email="filippoairaldi@gmail.com" },
]
description = "Reinforcement Learning with Model Predictive Control"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"typing_extensions >= 4.5.0 ; python_version <= '3.9'",
"numba >= 0.57.1",
"csnlp >= 1.6.3",
"scipy >= 1.11.0",
"gymnasium >= 0.28.1",
]
keywords = [
"reinforcement-learning",
"model-predictive-control",
"optimization",
"casadi",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/FilippoAiraldi/mpc-reinforcement-learning"
"Bug Tracker" = "https://github.com/FilippoAiraldi/mpc-reinforcement-learning/issues"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "mpcrl.__version__"}
[tool.black]
target-version = ["py39", "py310", "py311"]
color = true
[tool.isort]
profile = "black"
py_version = 39
[tool.mypy]
python_version = "3.9"
plugins = ["numpy.typing.mypy_plugin"]
exclude = ["tests"]
[[tool.mypy.overrides]]
module = [
"casadi.*",
"csnlp.*",
"matplotlib.*",
"parameterized.*",
"scipy.*",
"mpcrl.*",
]
ignore_missing_imports = true
[tool.coverage.run]
branch = true
omit = [
"tests/*",
"examples/*",
"*/csnlp/*",
]
[tool.coverage.report]
exclude_also = [
"def __repr__",
"def __str__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
]
sort = "miss"