Skip to content

Commit

Permalink
Fixed setup scrit
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed Apr 21, 2018
1 parent 473c774 commit 15335c9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(name='gym_urbandriving',
version='0.0.1',
version='0.0.2',
install_requires=["gym<=0.9.5",
"image",
"scipy",
"shapely",
"numpy",
"pygame",
"scikit-image",
"scikit-image",
"opencv-python",
"codecov"]
"codecov"],
include_package_data=True,
packages = find_packages()

)

0 comments on commit 15335c9

Please sign in to comment.