-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
31 lines (29 loc) · 909 Bytes
/
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
#!/usr/bin/env Python
#coding=utf-8
from setuptools import setup
from setuptools import find_packages
setup(
name='gym_gomoku',
version='0.0.1',
description = 'Game Gomoku or Five-In-a-Row Gym Environment',
author = 'Xichen Ding',
author_email = '[email protected]',
url = 'https://github.com/rockingdingo/gym-gomoku',
license="MIT",
keywords='gym gomoku reinforcement learning',
packages=find_packages(),
package_data={
'demo': ['gym_gomoku_demo.gif',
'gym_gomoku_demo.json',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires=['gym'],
)