-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 879 Bytes
/
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name="sd-notify",
version="0.1.0",
py_modules=["sd_notify"],
author="stigok",
author_email="[email protected]",
description="Simple sd_notify client library for Python 3",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="sd-notify systemd python3 watchdog",
url="http://github.com/stigok/sd-notify/",
project_urls={
"Bug Tracker": "http://github.com/stigok/sd-notify/issues",
"Documentation": "http://github.com/stigok/sd-notify/",
"Source Code": "http://github.com/stigok/sd-notify/",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.5",
)