From 763d5a441d65e1e627bd77c9d0c86908e7edcd88 Mon Sep 17 00:00:00 2001 From: tzangms Date: Thu, 10 Apr 2014 11:16:01 +0800 Subject: [PATCH] Update setup.py and README --- .gitignore | 1 + README.md | 4 +--- dj_elastictranscoder/__init__.py | 2 +- setup.py | 5 +++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0321307..7812acb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +/dist *.swp *.pyc *.egg-info diff --git a/README.md b/README.md index f71c776..9c55c52 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ django-elastic-transcoder Django + AWS Elastic Transcoder -_WARNING!!! Still in Development stage_ - Install ----------- @@ -15,7 +13,7 @@ Install First, install `dj_elastictranscode` with `pip` ```sh -$ pip install django-elastic-transcoder # I didn't submit to PyPI yet. +$ pip install django-elastic-transcoder ``` Then, add `dj_elastictranscoder` to `INSTALLED_APPS` diff --git a/dj_elastictranscoder/__init__.py b/dj_elastictranscoder/__init__.py index 11d27f8..b650ceb 100644 --- a/dj_elastictranscoder/__init__.py +++ b/dj_elastictranscoder/__init__.py @@ -1 +1 @@ -__version__ = '0.1' +__version__ = '0.2' diff --git a/setup.py b/setup.py index bd1c04c..1bb463f 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,12 @@ -from setuptools import setup, find_packages +from setuptools import setup from dj_elastictranscoder import __version__ setup( name='django-elastic-transcoder', version=__version__, - description="django-elastic-transcoder", + description="Django with AWS elastic transcoder", + long_description=open("README.md").read(), author='tzangms', author_email='tzangms@streetvoice.com', url='http://github.com/StreetVoice/django-elastic-transcoder',