-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
729ef8a
commit b036bc6
Showing
5 changed files
with
45 additions
and
42 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
[tool.setuptools] | ||
packages=["scenariogeneration"] | ||
|
||
|
||
[project] | ||
name = "scenariogeneration" # REQUIRED, is the only field that cannot be marked as dynamic. | ||
|
||
version = "0.14.9" | ||
description = "Generation of OpenSCENARIO and OpenDRIVE xml files" | ||
|
||
readme = "README.md" | ||
|
||
requires-python = ">=3.7" | ||
|
||
# https://packaging.python.org/en/latest/specifications/core-metadata/#license | ||
license = { file = "LICENSE" } | ||
|
||
keywords = ["OpenDRIVE", "OpenSCENARIO", "xml"] | ||
authors = [{ name = "M. Andersson, I. Natale, A. Tingberg", email = "[email protected]" }] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", | ||
"Operating System :: OS Independent", | ||
] | ||
[tool.setuptools.dynamic] | ||
dependencies = {file=["requirements.txt"]} |