-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
61 lines (52 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
[project]
name = "tactics2d"
version = "0.1.7"
description = "Tactics2D: A Reinforcement Learning Environment Library with Generative Scenarios for Driving Decision-making"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">= 3.8"
keywords = ["reinforcement-learning", "environment", "simulator", "decision-making", "traffic-behavior"]
authors = [
{ name = "Yueyuan Li", email = "[email protected]" }
]
maintainers = [
{ name = "Yueyuan Li", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["dependencies"]
[project.urls]
Documentation = "https://tactics2d.readthedocs.io/en/latest/"
Repository = "https://github.com/WoodOxen/tactics2d"
[project.optional-dependencies]
test = [
"bezier",
"Pillow",
"pytest",
"pytest-cov",
]
[build-system]
requires = [
"setuptools >= 60.0.0",
"wheel",
"pybind11>=2.10.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
tactics2d = ["tactics2d/participant/trajectory_classifier.m", "tactics2d/dataset_parser/map.config"]
[tool.setuptools.packages.find]
exclude = ["test", "tactics2d/data/"]
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.black]
line-length = 100
[tool.isort]
line_length = 100