forked from mvidner/cnetworkmanager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (22 loc) · 777 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (22 loc) · 777 Bytes
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 =
)