forked from coherence-project/UPnP-Inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.22 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from upnp_inspector import __version__
packages = find_packages()
long_description = "\n\n".join([
open("README.txt").read(),
])
setup(
name="UPnP-Inspector",
version=__version__,
description="""UPnP Device and Service analyzer""",
long_description=long_description,
author="Frank Scholz, Hartmut Goebel",
author_email='[email protected]',
license="MIT",
packages=packages,
scripts=['bin/upnp-inspector'],
url="http://coherence.beebits.net/wiki/UPnP-Inspector",
download_url='http://coherence.beebits.net/download/UPnP-Inspector-%s.tar.gz' % __version__,
keywords=['UPnP', 'DLNA'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Gnome',
'Environment :: X11 Applications :: GTK',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
package_data={
'upnp_inspector': ['icons/*.png'],
},
install_requires=[
'Coherence >= 0.6.4', 'Twisted', 'pygtk', 'setuptools'
]
)