7 lines
137 B
Python
7 lines
137 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='vizdoomgym',
|
||
|
version='0.0.1',
|
||
|
install_requires=['gym', 'vizdoom', 'numpy']
|
||
|
)
|