-
Notifications
You must be signed in to change notification settings - Fork 756
/
pyproject.toml
61 lines (54 loc) · 1.64 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 = "highway-env"
description = "An environment for simulated highway driving tasks."
readme = "README.md"
requires-python = ">= 3.8"
authors = [{ name = "Edouard Leurent", email = "[email protected]" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "car simulation", "RL", "AI"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"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 :: MIT License",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"gymnasium >=1.0.0a2",
"farama-notifications >=0.0.1",
"numpy >=1.21.0",
"pygame >=2.0.2",
"matplotlib",
"pandas",
"scipy"
]
dynamic = ["version"]
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov"
]
[project.urls]
Homepage = "https://farama.org"
Repository = "https://github.com/eleurent/highway-env"
Documentation = "https://highway-env.farama.org/"
"Bug Report" = "https://github.com/eleurent/highway-env/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["highway_env", "highway_env.*"]
[tool.setuptools.package-data]
[tool.black]
[tool.isort]
atomic = true
profile = "black"
src_paths = ["highway_env", "tests", "docs/_scripts"]
extra_standard_library = ["typing_extensions"]
indent = 4
lines_after_imports = 2
multi_line_output = 3