-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.81 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
69
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "opengen"
dynamic = ["version"]
description = "Optimization Engine Code Generator"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
authors = [
{ name = "Pantelis Sopasakis", email = "xzu.trustful191@passinbox.com" },
{ name = "Emil Fresk" },
]
license = "MIT OR Apache-2.0"
keywords = [
"optimization",
"code-generation",
"optimal-control",
"mpc",
"nmpc",
"embedded",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
]
dependencies = [
"jinja2>=3.1,<4",
"casadi>=3.6,<4",
"pyyaml>=6,<7",
"retry>=0.9,<1",
"numpy>=1.26,<3",
]
[project.urls]
Homepage = "https://github.com/alphaville/optimization-engine"
Documentation = "https://alphaville.github.io/optimization-engine/"
Repository = "https://github.com/alphaville/optimization-engine"
Changelog = "https://github.com/alphaville/optimization-engine/blob/master/python/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"build>=1",
"pytest>=8",
"twine>=5",
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = { file = ["VERSION"] }
[tool.setuptools.packages.find]
include = ["opengen*"]