-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.09 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
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
from os import path
setup_requires = [ ]
install_requires = [
'numpy==1.12.0'
]
here = path.abspath( path.dirname( __file__ ) )
with open( path.join( here, 'README.rst' ), 'r' ) as f :
readme = f.read( )
dependency_links = [
]
setup(
name='twistyRL',
version='0.1.20',
url='https://github.com/python-study-ko/twistyRL',
license='MIT License',
description='twisty cube game for ML',
long_description=readme,
author='wesky93',
author_email='[email protected]',
packages=[ "twistyRL" ],
include_package_data=True,
install_requires=install_requires,
setup_requires=setup_requires,
dependency_links=dependency_links,
keywords=[ 'cube', 'rubiks', 'twistycube', 'ML', 'RL' ],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
]
)