From f55d9e0db35c221552820e50f5cdaf01c3125598 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Sun, 1 Sep 2013 11:06:56 -0500 Subject: [PATCH] add long description --- README.rst | 3 --- setup.py | 13 +++++++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index b86ad23..08bb293 100644 --- a/README.rst +++ b/README.rst @@ -22,9 +22,6 @@ Velruse can: * Integrate with most web applications regardless of the language used to write the website. -Warning: It's early yet for Velruse, so only those interested in -developing Velruse should be taking a look into this now. - ---- Overview diff --git a/setup.py b/setup.py index 0d7d821..2bf6aec 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +import os.path import sys from setuptools import setup, find_packages @@ -27,14 +28,22 @@ 'docutils', ] +here = os.path.abspath(os.path.dirname(__file__)) +try: + with open(os.path.join(here, 'README.rst')) as f: + README = f.read() + with open(os.path.join(here, 'CHANGES.rst')) as f: + CHANGES = f.read() +except IOError: + README = CHANGES = '' + setup(name='velruse', version='1.1.1', description=( 'Simplifying third-party authentication for web applications.'), - long_description='', + long_description=README + '\n\n' + CHANGES, # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ - 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2',