Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
Use the README.rst file as the contents for the long_description
Browse files Browse the repository at this point in the history
This renders a lot better on PyPI: https://pypi.python.org/pypi/charlesbot
  • Loading branch information
marvinpinto committed Mar 18, 2016
1 parent 107974f commit be36149
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
@@ -1,14 +1,15 @@
from setuptools import setup, find_packages
import codecs

long_description = """
Full details available at https://github.com/marvinpinto/charlesbot
"""
# README into long description
with codecs.open('README.rst', encoding='utf-8') as f:
readme = f.read()

setup(
name='charlesbot',
version='0.10.0',
description='Slack Real Time Messaging robot written in Python 3!',
long_description=long_description,
description='CharlesBOT is a Python bot written to take advantage of Slack\'s Real Time Messaging API',
long_description=readme,
author='Marvin Pinto',
author_email='marvin@pinto.im',
license='MIT',
Expand Down

0 comments on commit be36149

Please sign in to comment.