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