freebsd-ports/security/py-passlib/files/patch-setup.py
Martin Wilke cb89876353 Add py-passlib 1.6, python password hashing framework supporting over 30
schemes.

PR:		ports/168949
Submitted by:	koobs <koobs.freebsd@gmail.com>
2012-08-05 08:29:26 +00:00

17 lines
461 B
Python

--- ./setup.py.orig 2012-06-11 20:52:21.000000000 +1000
+++ ./setup.py 2012-06-11 20:52:35.000000000 +1000
@@ -15,12 +15,8 @@
py3k = (sys.version_info[0] >= 3)
-try:
- from setuptools import setup
- has_distribute = True
-except ImportError:
- from distutils.core import setup
- has_distribute = False
+from distutils.core import setup
+has_distribute = False
#=========================================================
# init setup options