summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2013-10-26 21:50:23 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2013-10-26 21:50:23 -0700
commitf755c1dda98923edc372f8ca0407a507a48a2c0d (patch)
tree7b7d84d79260d0df3094fffe43377fd388ab5ec8 /setup.py
parent55afe6e5ae034210d1bb17d64bd7f133f593f96d (diff)
downloadnatsort-f755c1dda98923edc372f8ca0407a507a48a2c0d.tar.gz
Removed distribute_setup
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index f122ec5..876829b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,5 @@
#! /usr/bin/env python
-from distribute_setup import use_setuptools
-use_setuptools()
from setuptools import setup, find_packages
from os.path import join
import sys
@@ -18,7 +16,7 @@ with open(VERSIONFILE, "rt") as fl:
break
else:
s = "Unable to locate version string in {0}"
- raise RuntimeError (s.format(VERSIONFILE))
+ raise RuntimeError(s.format(VERSIONFILE))
# Read in the documentation for the long_description
DESCRIPTION = 'Sort lists naturally'