-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 1.32 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
#!/usr/bin/env python2
from setuptools import setup
setup(name="sagbescheid",
author="Wieland Hoffmann",
author_email="[email protected]",
packages=["sagbescheid", "sagbescheid.notifiers"],
package_dir={"sagbescheid": "sagbescheid"},
download_url="https://github.com/mineo/sagbescheid/tarball/master",
url="http://github.com/mineo/sagbescheid",
license="MIT",
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7"],
description="systemd notification daemon",
long_description=open("README.rst").read(),
install_requires=["Twisted[tls]>=15.2.0",
"pyasn1",
"txdbus==1.1.0",
"automat==0.7.0",
"zope.interface~=5.0",
"systemd-python==234",
"enum34==1.1.6;python_version<'3.4'",
"six==1.12.0"],
setup_requires=["setuptools_scm"],
use_scm_version={"write_to": "sagbescheid/version.py"},
extras_require={
'docs': ['sphinx', 'sphinxcontrib-autoprogram']
}
)