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',