forked from joeymeyer/raspberryturk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 794 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import raspberryturk
setup(name='raspberryturk',
version=raspberryturk.__version__,
description='Python package powering the Raspberry Turk chess-playing robot.',
author=raspberryturk.__author__,
author_email=raspberryturk.__email__,
url='https://bitbucket.com/joeymeyer/raspberryturk',
packages=find_packages(),
entry_points={
'console_scripts': [
'raspberryturk = raspberryturk.__main__:main'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 2.7'
]
)