From 8f0bab4c4a8b95739cc7a5704f15c1fe5b7149cd Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Tue, 29 Mar 2016 18:03:43 +0000 Subject: [PATCH] setup.py: use setuptools instead of distutils Signed-off-by: Arthur Gautier --- setup.py | 3 ++- tests/__init__.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 tests/__init__.py diff --git a/setup.py b/setup.py index c9d074c9..d9a5f96f 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: diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 00000000..e69de29b -- 2.47.3