forked from driskai/scenario_gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (61 loc) · 1.5 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
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
gym = ["gym>=0.21.0"]
hooks = [
"black~=22.3.0",
"flake8~=3.9.2",
"isort>=5.10.1",
"pre-commit~=2.16.0",
"pydocstyle~=6.1.1",
"importlib-metadata<5.0.0",
]
docs = ["Sphinx~=4.4.0"]
integrations = ["pandas>=1.1.5"]
testing = ["pytest~=6.2.4"]
dev = [
"gym>=0.21.0",
"black~=22.3.0",
"dm-env>=1.5.0",
"flake8~=3.9.2",
"isort>=5.10.1",
"pre-commit~=2.16.0",
"pydocstyle~=6.1.1",
"importlib-metadata<5.0.0",
"Sphinx~=4.4.0",
"pandas>=1.1.5",
"pytest~=6.2.4",
]
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "scenario_gym"
authors = [
{ name="Hamish Scott", email="[email protected]" },
]
description="scenario_gym - a lightweight framework for learning from scenario data."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
"lxml>=4.9.1",
"matplotlib>=3.5.0",
"numpy>=1.21.0",
"opencv-python>=4.5.3.56",
"pyxodr>=0.1.3",
"PyYAML>=6.0",
"setuptools>=61.0.0",
"scenariogeneration>=0.11.0",
"scipy>=1.7.0",
"Shapely>=2.0.0",
]
[tool.setuptools.packages.find]
include = ["scenario_gym", "scenario_gym.*"]
[project.urls]
"Homepage" = "https://github.com/driskai/scenario_gym"