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
·21 lines (19 loc) · 760 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·21 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
from distutils.core import setup
setup(name="python-networkmanager",
version="1.0.2",
author="Dennis Kaarsemaker",
author_email="dennis@kaarsemaker.net",
url="http://github.com/seveas/python-networkmanager",
description="Easy communication with NetworkManager",
py_modules=["NetworkManager"],
scripts=["n-m"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Networking',
])