-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.13 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
import sys
from setuptools import setup
MAJOR_VERSION = "1"
MINOR_VERSION = "0"
MICRO_VERSION = "0"
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(name="reevefresh",
version=VERSION,
description="Send notifications to Slack about Twitch activity",
url="https://gitlab.com/wigust/reevefresh",
author="Oleg Pykhalov",
license="GPLv3",
packages=["reevefresh"],
classifiers=[
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Development Status :: 5 - Production/Stable",
"Topic :: Office/Business"
],
zip_safe=False,
entry_points={"console_scripts": ["reevefresh = reevefresh.__main__:main"]},
platforms="any")