Skip to content

Commit

Permalink
Make properly installable, add MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Jul 17, 2012
1 parent c7c2b8c commit 3a68753
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
*.pyo
*.mo
*.db
.idea
*.egg-info/
.project
.idea/
.pydevproject
.idea/workspace.xml
.DS_Store
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Diederik van der Boor
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include AUTHORS
include README.rst
include LICENSE.rst
recursive-include fluent_pages/templates/ *.html
recursive-include fluent_pages/static/ *.css *.js
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
author='Diederik van der Boor',
author_email='[email protected]',

url='https://github.com/edoburu/django-fluent-contents',
download_url='https://github.com/edoburu/django-fluent-contents/zipball/master',
url='https://github.com/edoburu/django-fluent-pages',
download_url='https://github.com/edoburu/django-fluent-pages/zipball/master',

packages=find_packages(),
packages=find_packages(exclude=('example*',)),
include_package_data=True,

zip_safe=False,
Expand Down

0 comments on commit 3a68753

Please sign in to comment.