Fix the dang-blarged py_modules argument. 0.1.4
authorDaniel Greenfeld <pydanny@gmail.com>
Sun, 18 May 2014 01:24:12 +0000 (18:24 -0700)
committerDaniel Greenfeld <pydanny@gmail.com>
Sun, 18 May 2014 01:24:12 +0000 (18:24 -0700)
HISTORY.rst
cached_property.py
setup.py

index b0d27a4adcb53b7d3ef682ab4dcc4e298f47f1a0..f4c5ee046b028732e9fd6cfdb6d35034eb53eead 100644 (file)
@@ -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)
 ++++++++++++++++++
 
index 5a86c0c751817208b1c17b5ef7640193cece371f..f241a30230fe4fd8176f6107c5fdab1cd23667e0 100644 (file)
@@ -2,7 +2,7 @@
 
 __author__ = 'Daniel Greenfeld'
 __email__ = 'pydanny@gmail.com'
-__version__ = '0.1.3'
+__version__ = '0.1.4'
 __license__ = 'BSD'
 
 
index 06110054a9aeffe31e1754b180695f46f58930c2..a6c71d53c86c7c6f48ad7c35fa17263c86c7e750 100755 (executable)
--- 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,