-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
52 lines (46 loc) · 1.79 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
46
47
48
49
50
51
52
#!/usr/bin/env python
import os.path
try:
from setuptools.commands import setup
except:
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, "README.md")).read()
CHANGES = open(os.path.join(here, "CHANGES.md")).read()
except Exception:
README = CHANGES = ""
setup(name='WSDiscovery',
version='2.0.2dev',
description='WS-Discovery implementation for python',
long_description=README + "\n\n" + CHANGES,
long_description_content_type="text/markdown",
author='Andrei Kopats',
author_email='[email protected]',
url='https://github.com/andreikop/python-ws-discovery.git',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications'
],
packages=['wsdiscovery', 'wsdiscovery.actions'],
setup_requires=['netifaces-plus', 'click'],
install_requires=['netifaces-plus', 'click'],
tests_require = ['pytest', 'mock'],
entry_points = {
'console_scripts': [
'wsdiscover=wsdiscovery.cmdline:discover',
'wspublish=wsdiscovery.cmdline:publish'
],
}
)