-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.05 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
from setuptools import setup,find_packages
setup(
name="pushover-libnotify",
version="0.1.dev1",
install_requires=[
"configparser",
"requests",
"pyxdg",
"notify2",
"websocket-client",
"pillow",
],
description="Pushover client that use libnotify to show notifications",
author="Thomas Wouters",
author_email="[email protected]",
license="GPLv3",
keywords="pushover client libnotify",
url="https://github.com/twouters/pushover-libnotify",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: Linux",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
],
packages=find_packages(),
entry_points = {
'console_scripts': [
'pushover-libnotify = pushover_libnotify:main'
]
},
)