Added manifest template, package_data and bumped to 1.0.2

Signed-off-by: Brian Rosner <brosner@gmail.com>
This commit is contained in:
Jannis Leidel 2009-04-24 02:57:15 +08:00 committed by Brian Rosner
parent 737bf1d821
commit bf25a07009
2 changed files with 11 additions and 2 deletions

4
MANIFEST.in Normal file
View file

@ -0,0 +1,4 @@
include LICENSE.txt
include CONTRIBUTORS.txt
recursive-include docs *
recursive-include avatar/templates/avatar *.html

View file

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = '1.0.0'
version = '1.0.2'
LONG_DESCRIPTION = """
Using django-avatar
@ -157,9 +157,14 @@ setup(
keywords='avatar,django',
author='Eric Florenzano',
author_email='floguy@gmail.com',
url='http://django-avatar.googlecode.com/',
url='http://github.com/ericflo/django-avatar/',
license='BSD',
packages=find_packages(),
package_data = {
'avatar': [
'templates/avatar/*.html'
],
},
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],