-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 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
from setuptools import setup, find_packages
description = "VT-100 terminal implementation of the card game Spite and Malice."
setup(
name="sciibo",
version="0.8.0",
url="https://github.com/fdev/sciibo",
download_url="https://github.com/fdev/sciibo/tarball/master",
license="MIT",
description=description,
long_description=description,
author="Folkert de Vries",
author_email="[email protected]",
packages=find_packages(),
entry_points="""
[console_scripts]
sciibo = sciibo:play
""",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Games/Entertainment :: Board Games",
]
)