We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91ab536 commit 7453a4bCopy full SHA for 7453a4b
1 file changed
setup.py
@@ -1,6 +1,9 @@
1
#!/usr/bin/python
2
3
-from distutils.core import setup
+try:
4
+ from setuptools import setup
5
+except ImportError:
6
+ from distutils.core import setup
7
8
setup(name = "python-networkmanager",
9
version = "1.2.1",
@@ -9,6 +12,7 @@
12
url = "http://github.com/seveas/python-networkmanager",
10
13
description = "Easy communication with NetworkManager",
11
14
py_modules = ["NetworkManager"],
15
+ install_requires = ["dbus-python", "six"],
16
classifiers = [
17
'Development Status :: 5 - Production/Stable',
18
'Intended Audience :: Developers',
0 commit comments