-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 753 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""Installation script for netnotify."""
from setuptools import setup
with open('README.rst', 'r') as readme:
LONG_DESCRIPTION = readme.read()
setup(
name='netnotify',
description='send notifications over the Internet',
long_description=LONG_DESCRIPTION,
author='nihlaeth',
author_email='info@nihlaeth.nl',
url='https://github.com/nihlaeth/netnotify',
license='GPLv3',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',
scripts=['netnotify.py'],
install_requires=['user_config>=1.0a10'],
extras_require={
'server': ['notify2', 'daemonocle']},
entry_points={
'console_scripts': [
'netnotify = netnotify:send',
'netnotifyd = netnotify:daemon_controller']},
)