forked from ppaquette/gym-super-mario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 843 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
import sys, os
# Don't import gym module here, since deps may not be installed
for package in find_packages():
if '_gym_' in package:
sys.path.insert(0, os.path.join(os.path.dirname(__file__), package))
from package_info import USERNAME, VERSION
setup(name='{}-{}'.format(USERNAME, 'gym-super-mario'),
version=VERSION,
description='Gym User Env - 32 levels of Super Mario Bros',
url='https://github.com/ppaquette/gym_super_mario',
author='Philip Paquette',
author_email='[email protected]',
license='MIT License',
packages=[package for package in find_packages() if package.startswith(USERNAME)],
package_data={ '{}_{}'.format(USERNAME, 'gym_super_mario'): ['lua/*.lua', 'roms/*.nes' ] },
zip_safe=False,
install_requires=[ 'gym>=0.8.0' ],
)