-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsetup.py
31 lines (28 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
from setuptools import find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='mazelab',
version='0.2.0',
author='Xingdong Zuo',
author_email='[email protected]',
description='mazelab: A customizable framework to create maze and gridworld environments.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/zuoxingdong/mazelab',
# Minimal requried dependencies (full dependencies in requirements.txt)
install_requires=['gym',
'numpy',
'matplotlib',
'scikit-image'],
tests_require=['pytest'],
python_requires='>=3',
# List all packages (folder with __init__.py), useful to distribute a release
packages=find_packages(),
# tell pip some metadata (e.g. Python version, OS etc.)
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Artificial Intelligence']
)