Skip to content

Commit

Permalink
Merge remote-tracking branch 'miguelrestrepo/master'
Browse files Browse the repository at this point in the history
Conflicts:
	setup.py
  • Loading branch information
AndrewIngram committed Oct 19, 2012
2 parents 8661144 + 22dfcbd commit b745950
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Other Contributors:
* Piet Delport (https://github.com/pjdelport)
* jgsogo (https://github.com/jgsogo)
* Krzysiek Szularz (https://github.com/szuliq)

* Miguel Restrepo (https://github.com/miguelrestrepo)
7 changes: 6 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
include LICENSE
include README.rst
include README.rst
recursive-include extra_views *.py
recursive-include extra_views/contrib *.py
recursive-include extra_views/tests *.py
recursive-include extra_views/tests/templates *.html
recursive-include extra_views/tests/templates/extra_views *.html
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

setup(
name='django-extra-views',
version='0.5.0',
url='https://github.com/AndrewIngram/django-extra-views',
version='0.5.1',
url='https://github.com/miguelrestrepo/django-extra-views',
install_requires=[
'Django >=1.3',
],
Expand All @@ -12,8 +12,10 @@
license="MIT",
author="Andrew Ingram",
author_email="andy@andrewingram.net",
packages=['extra_views', 'extra_views.contrib'],
package_dir={'': '.'},
packages=['extra_views'],
package_dir={'extra_views': 'extra_views'},
include_package_data = True, # include everything in source control
package_data={'extra_views': ['*.py','contrib/*.py','tests/*.py','tests/templates/*.html', 'tests/templates/extra_views/*.html']},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
Expand Down

0 comments on commit b745950

Please sign in to comment.