-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Housekeeping and static code analysis (#15)
* Move to pyproject.toml and update CODEOWNERS * Increase build requirements to ensure editable build * Add basic pylint checks * Add mypy and make it happy * Add and run isort
- Loading branch information
Showing
12 changed files
with
107 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
* m-naumann@naumail.de | ||
* [email protected] | ||
* [email protected] | ||
* @m-naumann | ||
* @jtruetsch | ||
* @keroe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
[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.7" | ||
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" | ||
] | ||
|
||
[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" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/behavior_generation_lecture_python/graph_search/a_star.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from collections import defaultdict | ||
|
||
import matplotlib.pyplot as plt | ||
import numpy as np | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters