-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.hatch.build.targets.wheel]
packages = ["src/solutions"]
[project]
name = "cs2solutions"
version = "0.10.0"
dependencies =[
"control",
"matplotlib",
"numpy",
"scipy",
"sympy",
"pandas"
]
requires-python = ">=3.9"
authors = [
{ name="Niclas Scheuer", email="[email protected]" },
{ name="Kalle Laitinen", email="[email protected]" },
{ name="Dejan Milojevic", email="[email protected]" }
]
maintainers = [
{ name="Kalle Laitinen", email="[email protected]" },
{ name="Niclas Scheuer", email="[email protected]" }
]
description = "A package containing solutions for the CS2 lecture at ETH Zürich"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
Homepage = "https://idsc.ethz.ch/education/lectures/control-systems-ii.html"
Repository = "https://github.com/idsc-frazzoli/cs2solutions"
Notebooks = "https://github.com/idsc-frazzoli/CS2-2024-notebooks"