Skip to content

Commit

Permalink
add long description
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Sep 1, 2013
1 parent 9c64640 commit f55d9e0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os.path
import sys

from setuptools import setup, find_packages
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit f55d9e0

Please sign in to comment.