forked from svinota/mdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py.in
47 lines (38 loc) · 1.02 KB
/
setup.py.in
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='mdns',
version='@RELEASE@',
description='mDNS library',
author='Peter V. Saveliev',
author_email='[email protected]',
url='https://github.com/svinota/mdns',
license="GPLv3+",
packages=[
'mdns'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
],
long_description='''
mDNS protocol implementation
============================
The library allows you to use mDNS/Zeroconf protocol in
your applications.
Also, it contains DNSSEC and Heartbeat extensions.
Links
=====
* home: https://github.com/svinota/mdns
* bugs: https://github.com/svinota/mdns/issues
* pypi: http://pypi.python.org/pypi/mdns/
Changes
=======
1.0.0
-----
* initial pypi release
'''
)