From: Arthur Gautier Date: Tue, 29 Mar 2016 18:03:43 +0000 (+0000) Subject: setup.py: use setuptools instead of distutils X-Git-Tag: v1.13.0~7^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f0bab4c4a8b95739cc7a5704f15c1fe5b7149cd;p=thirdparty%2Fdnspython.git setup.py: use setuptools instead of distutils Signed-off-by: Arthur Gautier --- 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