8000 Update setup.py and README · mauler/django-elastic-transcoder@763d5a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 763d5a4

Browse files
committed
Update setup.py and README
1 parent d93e696 commit 763d5a4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
/dist
23
*.swp
34
*.pyc
45
*.egg-info

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,14 @@ django-elastic-transcoder
66

77
Django + AWS Elastic Transcoder
88

9-
_WARNING!!! Still in Development stage_
10-
119

1210
Install
1311
-----------
1412

1513
First, install `dj_elastictranscode` with `pip`
1614

1715
```sh
18-
$ pip install django-elastic-transcoder # I didn't submit to PyPI yet.
16+
$ pip install django-elastic-transcoder
1917
```
2018

2119
Then, add `dj_elastictranscoder` to `INSTALLED_APPS`

dj_elastictranscoder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1'
1+
__version__ = '0.2'

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22
from dj_elastictranscoder import __version__
33

44

55
setup(
66
name='django-elastic-transcoder',
77
version=__version__,
8-
description="django-elastic-transcoder",
8+
description="Django with AWS elastic transcoder",
9+
long_description=open("README.md").read(),
910
author='tzangms',
1011
author_email='tzangms@streetvoice.com',
1112
url='http://github.com/StreetVoice/django-elastic-transcoder',

0 commit comments

Comments
 (0)
0