Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasAlegre committed Aug 24, 2022
1 parent 5dd31b6 commit 2cb9d70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

REQUIRED = ['gym==0.24.0', 'numpy', 'pandas', 'pillow', 'pettingzoo==1.18.1', 'sumolib', 'traci']

Expand All @@ -9,8 +9,8 @@

setup(
name='sumo-rl',
version='1.2',
packages=['sumo_rl'],
version='1.3.0',
packages=[package for package in find_packages() if package.startswith("sumo_rl")] + ["nets"],
install_requires=REQUIRED,
extras_require=extras,
author='LucasAlegre',
Expand Down

0 comments on commit 2cb9d70

Please sign in to comment.