Skip to content

Commit

Permalink
manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
yetty committed Jun 1, 2013
1 parent a496206 commit 7084629
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.rst
include CHANGES.rst
include LICENSE
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
from setuptools import setup, find_packages

README = open('README.rst').read()
CHANGES = open('CHANGES.rst').read()
import os


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

README = read('README.rst')
CHANGES = read('CHANGES.rst')

setup(
name='django-embed-video',
Expand Down

0 comments on commit 7084629

Please sign in to comment.