Skip to content

Commit

Permalink
Updated setup.py to include long description
Browse files Browse the repository at this point in the history
Puts the readme and changelog onto pypi
  • Loading branch information
sirosen committed Aug 23, 2014
1 parent 90219ec commit 63c2e17
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
@@ -1,5 +1,12 @@
from setuptools import setup

readme_text = ''
changelog_text = ''
with open('README.md', 'r') as f:
readme_text = f.read()
with open('CHANGELOG.md', 'r') as f:
changelog_text = f.read()

setup(
name='salve',
version='2.3.0',
Expand All @@ -11,6 +18,7 @@
entry_points={'console_scripts': ['salve = salve.cli:main']},

description='SALVE Configuration Deployment Language',
long_description=readme_text + '\n\n\n' + changelog_text,
author='Stephen Rosen',
author_email='sirosen@uchicago.edu',
url='http://salve.sirosen.net/',
Expand Down

0 comments on commit 63c2e17

Please sign in to comment.