aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2023-01-30 03:38:55 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2023-01-30 03:38:55 -0500
commit87d84d188264e645c621516ffdfdd473f726d034 (patch)
treea08039cfc7c19b13e7b61dc619504d4fc1cdadfb /setup.py
parent2fe5f096b7ea05011d96f9c0523a0ddbe2748c59 (diff)
Migrate away from distutils.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py14
1 files changed, 3 insertions, 11 deletions
diff --git a/setup.py b/setup.py
index 13d80a5..80ffbb3 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#
# setup.py - [ install script for mini-dinstall ]
# Copyright (c) 2007 Christoph Goehre <christoph.goehre@gmx.de>
@@ -20,14 +20,6 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
#
-from distutils.core import setup
+from setuptools import setup
-setup(name = 'mini-dinstall',
- author = 'Colin Walters',
- author_email = 'walters@debian.org',
- maintainer = 'Christoph Goehre',
- maintainer_email = 'christoph.goehre@gmx.de',
- scripts = [ 'mini-dinstall' ],
- packages = [ 'minidinstall' ],
- url = 'http://alioth.debian.org/projects/mini-dinstall/',
-)
+setup()