diff options
| author | Arthur Gautier <baloo@gandi.net> | 2016-03-29 18:03:43 +0000 |
|---|---|---|
| committer | Arthur Gautier <baloo@gandi.net> | 2016-03-30 23:28:52 +0000 |
| commit | 8f0bab4c4a8b95739cc7a5704f15c1fe5b7149cd (patch) | |
| tree | 04695d37f291e18cab7f4a5349377ebe7079896e /setup.py | |
| parent | 99fd864361a4e8f3988440b315d645e16bbf94b7 (diff) | |
| download | dnspython-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-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |
