mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
Added manifest template, package_data and bumped to 1.0.2
Signed-off-by: Brian Rosner <brosner@gmail.com>
This commit is contained in:
parent
737bf1d821
commit
bf25a07009
2 changed files with 11 additions and 2 deletions
4
MANIFEST.in
Normal file
4
MANIFEST.in
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
include LICENSE.txt
|
||||
include CONTRIBUTORS.txt
|
||||
recursive-include docs *
|
||||
recursive-include avatar/templates/avatar *.html
|
||||
9
setup.py
9
setup.py
|
|
@ -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'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue