-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (28 loc) · 1.06 KB
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
from setuptools import setup, find_packages
import sgsclient
def readme():
with open("README.rst") as f:
return f.read()
setup(name="sgsclient",
version=sgsclient.version,
description="The python client library for the Stratum Game Server.",
long_description=readme(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Games/Entertainment :: Turn Based Strategy"
]
keywords=["sgsclient", "stratum", "game", "server", "turn", "based",
"board", "ai", "autonomous", "tictactoe"],
url="https://python-client.stratumgs.org",
author="David Korhumel",
author_email="dpk2442@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=[],
include_package_data=True,
zip_safe=False)