This is necessary for any actual installation taking place

This commit is contained in:
Nicolai Czempin 2017-03-31 00:48:43 +02:00
parent 100d35ec28
commit e19382cc2b

View File

@ -1,8 +1,9 @@
from setuptools import setup from setuptools import setup
from setuptools import find_packages
setup(name='gym_random_walk', setup(name='gym_random_walk',
version='0.0.1', version='0.0.1',
install_requires=['gym'], install_requires=['gym'],
url="https://github.com/nczempin/gym-random-walk" url="https://github.com/nczempin/gym-random-walk",
packages=find_packages()
) )