forked from frawau/aiozeroconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (42 loc) · 1.59 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
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
from distutils.core import setup
version = "0.1.7"
setup(name='aiozeroconf',
packages=['aiozeroconf'],
version=version,
author='Paul Scott-Murphy, William McBrine, Jakub Stasiak, François Wautier',
author_email='francois@wautier.eu',
description='Pure Python Multicast DNS Service Discovery Library for asyncio '
'(Bonjour/Avahi compatible)',
url='https://github.com/frawau/aiozeroconf',
download_url='https://github.com/frawau/aiozeroconf/archive/'+version+'.tar.gz',
platforms=['unix', 'linux', 'osx'],
license='LGPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
],
keywords=[
'Bonjour', 'Avahi', 'Zeroconf', 'Multicast DNS', 'Service Discovery',
'mDNS', 'asyncio',
],
install_requires=[
'netifaces',
],
entry_points={
'console_scripts': [
'aiozeroconf=aiozeroconf.__main__:main'
],
},
)