-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (27 loc) · 928 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
import setuptools
from hackaton.meta import version
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name="hanako",
version=version,
author="BitolaHacklab",
author_email="dev@bitolahacklab.org",
description="Real time multiplayer game server.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BitolaHacklab/Hanako",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Game Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
),
install_requires=[
]
)