From: Daniel Greenfeld Date: Sun, 18 May 2014 01:24:12 +0000 (-0700) Subject: Fix the dang-blarged py_modules argument. X-Git-Tag: 0.1.4^0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b40500f96042bcd8df521457b5b972d80d6fd720;p=cached-property.git Fix the dang-blarged py_modules argument. --- 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,