From b40500f96042bcd8df521457b5b972d80d6fd720 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Sat, 17 May 2014 18:24:12 -0700 Subject: [PATCH] Fix the dang-blarged py_modules argument. --- HISTORY.rst | 10 ++++++++++ cached_property.py | 2 +- setup.py | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b0d27a4..f4c5ee0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +0.1.4 (2014-05-18) +++++++++++++++++++ + +* Fix the dang-blarged py_modules argument. + +0.1.3 (2014-05-17) +++++++++++++++++++ + +* Removed import of package into setup.py + 0.1.2 (2014-05-17) ++++++++++++++++++ diff --git a/cached_property.py b/cached_property.py index 5a86c0c..f241a30 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = 'Daniel Greenfeld' __email__ = 'pydanny@gmail.com' -__version__ = '0.1.3' +__version__ = '0.1.4' __license__ = 'BSD' diff --git a/setup.py b/setup.py index 0611005..a6c71d5 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ try: except ImportError: from distutils.core import setup -__version__ = '0.1.3' +__version__ = '0.1.4' readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') @@ -29,7 +29,7 @@ setup( author='Daniel Greenfeld', author_email='pydanny@gmail.com', url='https://github.com/pydanny/cached-property', - py_modules=['dj_database_url'], + py_modules=['cached_property'], include_package_data=True, license="BSD", zip_safe=False, -- 2.30.2