~ubuntu-branches/debian/squeeze/upnp-inspector/squeeze

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Charlie Smotherman
  • Date: 2009-07-24 07:13:32 UTC
  • Revision ID: james.westby@ubuntu.com-20090724071332-t9knke5z11s63w0w
Tags: upstream-0.2.2+dfsg
ImportĀ upstreamĀ versionĀ 0.2.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
 
 
3
from setuptools import setup, find_packages
 
4
 
 
5
from upnp_inspector import __version__
 
6
 
 
7
packages = find_packages()
 
8
 
 
9
setup(
 
10
    name="UPnP-Inspector",
 
11
    version=__version__,
 
12
    description="""UPnP Device and Service analyzer""",
 
13
    long_description="""UPnP-Inspector is an UPnP Device and Service analyzer,
 
14
based on the Coherence DLNA/UPnP framework.
 
15
 
 
16
Loosely modeled after the Intel UPnP Device Spy and the UPnP Test Tool.
 
17
 
 
18
Features:
 
19
 
 
20
 * inspect UPnP devices, services, actions and state-variables
 
21
 * invoke actions on any service
 
22
 * extract UPnP device- and service-description xml-files
 
23
 * follow and analyze events
 
24
 * interact with well-known devices
 
25
   * browse the ContentDirectory of an UPnP A/V MediaServer and inspect its containers and items
 
26
   * control an UPnP A/V MediaRenderer
 
27
 
 
28
This 0.2.2 - Let the Sunshine In - release includes
 
29
 
 
30
 * a control-window for UPnP A/V MediaRenderers
 
31
 * Drag 'n Drop functionality from the MediaServer Browse window to the MediaRenderer control
 
32
 * a 'Rediscover Devices' menu item
 
33
 * a 'Refreshing Container' context menu item and an overall refresh upon closing the MediaServer Browse window
 
34
 * support for dlna-playcontainer URIs
 
35
 * displaying all elements from a DIDLLite fragment
 
36
 
 
37
""",
 
38
    author="Frank Scholz",
 
39
    author_email='coherence@beebits.net',
 
40
    license = "MIT",
 
41
    packages=packages,
 
42
    scripts = ['bin/upnp-inspector'],
 
43
    url = "http://coherence.beebits.net/wiki/UPnP-Inspector",
 
44
    download_url = 'http://coherence.beebits.net/download/UPnP-Inspector-%s.tar.gz' % __version__,
 
45
    keywords=['UPnP', 'DLNA'],
 
46
    classifiers = ['Development Status :: 4 - Beta',
 
47
                   'Environment :: X11 Applications :: Gnome',
 
48
                   'Environment :: X11 Applications :: GTK',
 
49
                   'License :: OSI Approved :: MIT License',
 
50
                   'Operating System :: OS Independent',
 
51
                   'Programming Language :: Python',
 
52
                ],
 
53
 
 
54
    package_data = {
 
55
        'upnp_inspector': ['icons/*.png'],
 
56
    },
 
57
    install_requires=[
 
58
    'Coherence >= 0.6.4',
 
59
    ]
 
60
)