forked from pcattori/deep-blue-talks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.21 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
from setuptools import setup
from glob import glob
setup(name='deep-blue-talks',
version='0.2.2',
description='bestow speech unto chess engines',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Games/Entertainment :: Board Games',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='deep blue talks chess pedro cattori',
url='https://github.com/pcattori/deep-blue-talks',
author='Pedro Cattori',
author_email='pcattori@gmail.com',
license='MIT',
packages=['kasparobot'],
package_data={
'kasparobot' : ['engines/*']
},
install_requires=[
'python-chess',
],
dependency_links=[
"git+https://github.com/niklasf/python-chess.git@883a491b414ab9c30a2021241ad4d2af2113c868#egg=python-chess"
],
scripts=['bin/deep-blue-talks'],
include_package_data=True,
zip_safe=False)