-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
52 lines (47 loc) · 1.2 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
[project]
name = "behavior_generation_lecture_python"
version = "0.0.2"
description = "Python code for the respective lecture at KIT"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Organizers of the lecture 'Verhaltensgenerierung für Fahrzeuge' at KIT" }
]
maintainers = [
{name = "Maximilian Naumann", email = "[email protected]" }
]
dependencies = [
"numpy",
"matplotlib>=2.2.4",
"scipy",
"jupyter",
"python-statemachine",
"torch"
]
[project.optional-dependencies]
dev = [
"black[jupyter]==22.3.0",
"pytest",
"pytest-cov>=3.0.0",
"pylint",
"mypy",
"isort"
]
docs = [
"mkdocs-material",
"mkdocs-jupyter",
"mkdocstrings[python]>=0.18",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index"
]
[project.urls] # Optional
"Homepage" = "https://kit-mrt.github.io/behavior_generation_lecture_python/"
"Bug Reports" = "hhttps://github.com/KIT-MRT/behavior_generation_lecture_python/issues"
"Source" = "https://github.com/KIT-MRT/behavior_generation_lecture_python"
[build-system]
requires = ["setuptools>=64.0.0", "wheel", "pip>=21.3.0"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"