-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 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
from setuptools import setup
setup(name='scrabble',
version='1.3',
description='Scrabble game with move recovery and best move analysis',
url='https://github.com/benjamincrom/scrabble',
author='Benjamin B. Crom',
include_package_data=True,
license='MIT',
packages=['scrabble'],
setup_requires=['pytest-runner'],
scripts=['bin/recover_scrabble_game'],
tests_require=['pytest'],
zip_safe=False,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Games/Entertainment :: Board Games',
'Topic :: Games/Entertainment :: Puzzle Games',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules']
)