Updated setup.py to use setuptools
This commit is contained in:
parent
69503dafb1
commit
9b88b99841
1 changed files with 5 additions and 3 deletions
8
setup.py
8
setup.py
|
@ -1,6 +1,8 @@
|
|||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
setup(name='gymrecord',
|
||||
version='0.9',
|
||||
scripts=['gymrecord'],
|
||||
py_modules = ['play']
|
||||
py_modules = ['play'],
|
||||
scripts = ['gymrecord'],
|
||||
packages=find_packages(),
|
||||
install_requires = ['gym[atari]', 'pygame>=1,<2', 'matplotlib>=3,<4']
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue