forked from seveas/python-networkmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 857 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/python
from setuptools import setup
setup(name = "er-python-networkmanager",
version = "2.2",
author = "Dennis Kaarsemaker",
author_email = "dennis@kaarsemaker.net",
maintainer = "Niels Hvid",
maintainer_email = "nah@enabled-robotics.com",
url = "http://github.com/enabled-robotics/python-networkmanager",
description = "Easy communication with NetworkManager",
py_modules = ["NetworkManager"],
install_requires = ["dbus-python", "six"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: zlib/libpng License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Networking',
]
)