forked from mit-wu-lab/IntersectionZoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.02 KB
/
setup.py
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
from setuptools import find_packages, setup
from itertools import chain
# export SUMO_HOME=/usr/share/sumo
setup(
name="intersection_zoo",
description="Intersection Zoo traffic environment",
long_description_content_type="text/markdown",
version='0.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'traci==1.12.0',
'gymnasium',
'pettingzoo',
'numpy>=1.23.3',
'pandas==2.2.2',
],
python_requires=">=3.10",
license="MIT",
author="Lab of Cathy Wu, packaged by Joseph Suarez",
author_email="[email protected]",
url="https://github.com/PufferAI/IntersectionZoo",
keywords=["IntersectionGym", "AI", "RL"],
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)