Skip to content

Instantly share code, notes, and snippets.

@niallo
Created June 15, 2010 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niallo/438529 to your computer and use it in GitHub Desktop.
Save niallo/438529 to your computer and use it in GitHub Desktop.
--- setup.py 2006-05-22 04:53:27.000000000 -0700
+++ ../py-bcrypt-0.2/setup.py 2010-06-14 11:45:19.254713926 -0700
@@ -17,16 +17,16 @@
# $Id: setup.py,v 1.1.1.1 2006/05/22 11:53:27 djm Exp $
import sys
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
-VERSION = "0.1"
+VERSION = "0.2"
if __name__ == '__main__':
bcrypt = Extension('bcrypt._bcrypt',
define_macros = [('PROGVER', '"' + VERSION + '"')],
sources = ['bcrypt/bcrypt_python.c', 'bcrypt/blowfish.c',
'bcrypt/bcrypt.c'])
- setup( name = "bcrypt",
+ setup( name = "py-bcrypt",
version = VERSION,
author = "Damien Miller",
author_email = "djm@mindrot.org",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment