summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorArthur Gautier <baloo@gandi.net>2016-03-29 18:03:43 +0000
committerArthur Gautier <baloo@gandi.net>2016-03-30 23:28:52 +0000
commit8f0bab4c4a8b95739cc7a5704f15c1fe5b7149cd (patch)
tree04695d37f291e18cab7f4a5349377ebe7079896e /setup.py
parent99fd864361a4e8f3988440b315d645e16bbf94b7 (diff)
downloaddnspython-8f0bab4c4a8b95739cc7a5704f15c1fe5b7149cd.tar.gz
setup.py: use setuptools instead of distutils
Signed-off-by: Arthur Gautier <baloo@gandi.net>
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c9d074c..d9a5f96 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import sys
-from distutils.core import setup
+from setuptools import setup
version = '1.12.0'
@@ -51,6 +51,7 @@ direct manipulation of DNS zones, messages, names, and records.""",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
+ 'test_suite': 'tests',
}
if sys.hexversion >= 0x02050000: