Skip to content

Commit

Permalink
Use the README as long_description (in pypi)
Browse files Browse the repository at this point in the history
  • Loading branch information
gvangool committed Apr 10, 2015
1 parent 2ecd783 commit 368cf05
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
@@ -1,19 +1,16 @@
import os
from setuptools import setup, find_packages
import django_states

LONG_DESCRIPTION = """\
State engine for django models.
import django_states

Define state transitions for models and keep track of each instance's state.
"""

setup(
name="django-states",
version=django_states.__version__,
url='https://github.com/citylive/django-states2',
license='BSD',
description="State machine for django models",
long_description=LONG_DESCRIPTION,
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Jonathan Slenders, Gert van Gool, Maarten Timmerman, Steven (rh0dium)',
author_email='jonathan.slenders@mobilevikings.com',
packages=find_packages('.'),
Expand Down

0 comments on commit 368cf05

Please sign in to comment.