-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Imports #
import os
from setuptools import setup, find_packages
# Constants #
DIRNAME = os.path.dirname(__file__)
SHORT_DESCRIPTION = "Receive instant GitHub notifications on your Linux desktop"
LONG_DESCRIPTION = open(os.path.join(DIRNAME, "docs", "README.md")).read()
__version__ = "1.0.2"
# Setup #
setup(
name="github-desktop-notifier",
version=__version__,
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/bytexenon/Github-Desktop-Notifier",
author="bytexenon",
author_email="[email protected]",
license="MIT",
python_requires=">=3.6",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
project_urls={
"Documentation": "https://github.com/bytexenon/Github-Desktop-Notifier",
"Source": "https://github.com/bytexenon/Github-Desktop-Notifier",
"Tracker": "https://github.com/bytexenon/Github-Desktop-Notifier/issues",
"Changelog": "https://github.com/bytexenon/Github-Desktop-Notifier/releases",
},
keywords="github desktop notifier linux notifications dunstify gh",
packages=find_packages(exclude=["tests", "docs"]),
install_requires=["requests"],
entry_points={
"console_scripts": [
"github-notifier=github_desktop_notifier.github_desktop_notifier:main",
],
},
)