Update README.md
[cached-property.git] / setup.py
index 071a3f6621448665162aa0f183dee2dd99610500..8fc7658d245284e820692affe15e06a806ea3b95 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,50 +3,62 @@
 
 import os
 import sys
-
+import codecs
 
 try:
     from setuptools import setup
 except ImportError:
     from distutils.core import setup
 
+__version__ = "1.5.2"
+
 
-readme = open('README.rst').read()
-history = open('HISTORY.rst').read().replace('.. :changelog:', '')
+def read(fname):
+    return codecs.open(
+        os.path.join(os.path.dirname(__file__), fname), "r", "utf-8"
+    ).read()
 
 
-import cached_property
+readme = read("README.md")
+history = read("HISTORY.md")
 
-if sys.argv[-1] == 'publish':
-    os.system('python setup.py sdist bdist_wheel upload')
-    print("You probably want to also tag the version now:")
-    print("  git tag -a %s -m 'version %s'" % (cached_property.__version__,
-        cached_property.__version__))
-    print("  git push --tags")
+if sys.argv[-1] == "publish":
+    try:
+        import wheel
+        import twine
+    except: # Yes, this is not how we usually do try/except
+        raise ImportError('Run "pip install wheel twine"')
+    os.system("python setup.py sdist bdist_wheel")
+    os.system("twine upload dist/*")
+    os.system("git tag -a %s -m 'version %s'" % (__version__, __version__))
+    os.system("git push --tags")
     sys.exit()
 
 setup(
-    name='cached-property',
-    version=cached_property.__version__,
-    description='A cached-property for decorating methods in classes.',
-    long_description=readme + '\n\n' + history,
-    author='Daniel Greenfeld',
-    author_email='pydanny@gmail.com',
-    url='https://github.com/pydanny/cached-property',
-    py_modules=['dj_database_url'],
+    name="cached-property",
+    version=__version__,
+    description="A decorator for caching properties in classes.",
+    long_description=readme + "\n\n" + history,
+    long_description_content_type="text/x-md",
+    author="Daniel Greenfeld",
+    author_email="pydanny@gmail.com",
+    url="https://github.com/pydanny/cached-property",
+    py_modules=["cached_property"],
     include_package_data=True,
     license="BSD",
     zip_safe=False,
-    keywords='cached-property',
+    keywords="cached-property",
     classifiers=[
-        'Development Status :: 4 - Beta',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: BSD License',
-        'Natural Language :: English',
+        "Development Status :: 5 - Production/Stable",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: BSD License",
+        "Natural Language :: English",
         "Programming Language :: Python :: 2",
-        'Programming Language :: Python :: 2.6',
-        'Programming Language :: Python :: 2.7',
-        'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.3',
+        "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: 3",     
+        "Programming Language :: Python :: 3.5",
+        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
+        "Programming Language :: Python :: 3.8",
     ],
 )