-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 907 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
32
33
34
from setuptools import setup, find_packages
from boardgame import (
VERSION,
SMALL_DESCRIPTION,
LONG_DESCRIPTION
)
setup(
name='boardgame',
version=VERSION,
description=SMALL_DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Surya Ambrose',
author_email='[email protected]',
packages=[
'boardgame',
'boardgame.commands',
'boardgame.ai',
'boardgame.tictactoe',
'boardgame.connectfour'
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Games/Entertainment :: Board Games",
],
requires=[],
license = "MIT",
scripts=['bin/boardgame']
)