Skip to content

Commit

Permalink
Include all package data and add django dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Kuttler committed Feb 26, 2012
1 parent 758aef3 commit c45f04b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,15 @@

setup(
name = "django-webmaster-verification",
version = "0.1.1",
version = "0.1.3",
author = "Nicolas Kuttler",
author_email = "pypi@nicolaskuttler.com",
description = "Webmaster tools verification for Django",
long_description = open("README.rst").read(),
license = "BSD",
url = "http://github.com/nkuttler/django-webmaster-verification",
packages = ['webmaster_verification'],
package_data = {
'webmaster_verification': ['templates/webmaster_verification/*', ],
},
include_package_data = True,
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
Expand All @@ -25,5 +23,8 @@
"Programming Language :: Python",
"Framework :: Django",
],
install_requires = [
"Django >= 1.3",
],
zip_safe = True,
)

0 comments on commit c45f04b

Please sign in to comment.