-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.23 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
29
30
31
32
33
34
35
36
37
38
from timebomb import __VERSION__, __DESCRIPTION__
from setuptools import setup, find_packages
with open("./README.md", encoding="utf-8") as f:
LONG_DESC = "\n" + f.read()
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Games/Entertainment",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
]
setup(
name="timebomb-client",
version=__VERSION__,
description=__DESCRIPTION__,
long_description=LONG_DESC,
long_description_content_type="text/markdown",
author="Thomas Le Meur",
author_email="thmslmr@gmail.com",
url="https://github.com/thmslmr/timebomb-client",
license="MIT",
classifiers=CLASSIFIERS,
python_requires=">=3.6",
install_requires=["npyscreen", "python-socketio[client]"],
extras_require={},
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
entry_points={"console_scripts": ["timebomb=timebomb.cli:main"]},
include_package_data=True,
)