Update MANIFEST and setup.py to use README.rst

This commit is contained in:
Anton Ovchinnikov 2014-09-17 10:22:33 +02:00
parent a5f144ac9d
commit ae9cd9c80f
2 changed files with 6 additions and 2 deletions

View File

@ -1,9 +1,13 @@
include LICENSE
include README.markdown
include README.rst
include *.txt
include version.py
include VERSION
recursive-include docs *
recursive-include examples *
# exclude all bytecode
global-exclude *.pyo
global-exclude *.pyc

View File

@ -28,7 +28,7 @@ setup(
url='https://github.com/bcarneiro/django-tenant-schemas',
license='MIT',
description='Tenant support for Django using PostgreSQL schemas.',
long_description=open('README.markdown').read() if exists("README.markdown") else "",
long_description=open('README.rst').read() if exists("README.rst") else "",
classifiers=[
'License :: OSI Approved :: MIT License',
'Framework :: Django',