File: setup.py

package info (click to toggle)
cnetworkmanager 0.21.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 220 kB
  • ctags: 442
  • sloc: python: 1,252; makefile: 29
file content (23 lines) | stat: -rwxr-xr-x 777 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# see http://docs.python.org/distutils/

from distutils.core import setup
setup(name = 'cnetworkmanager',
      version = '0.21.1',
      description = 'NetworkManager library and CLI',
      author = 'Martin Vidner',
      author_email = 'martin@vidner.net',
      url = 'http://vidner.net/martin/software/cnetworkmanager/',
      license = 'GPL v2 or later',
      #platform = 
      requires = ['dbus'],
      packages = ['networkmanager',
                  'networkmanager.applet',
                  'networkmanager.applet.service',
                  'dbusclient'],
      scripts = ['cnetworkmanager'], # -server is not ready yet
      data_files = [
        ('/etc/dbus-1/system.d', ['cnetworkmanager.conf']),
        ]
      # classifiers =
      )