9 lines
176 B
Python
9 lines
176 B
Python
from setuptools import setup
|
|
|
|
setup(name='gym_random_walk',
|
|
version='0.0.1',
|
|
install_requires=['gym'],
|
|
url="https://github.com/nczempin/gym-random-walk"
|
|
)
|
|
|