-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 968 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name = 'django-simplegravatar',
version = '0.3.2',
packages = ['simplegravatar', ],
package_data = {
'simplegravatar': [
'templates/templatetags/simplegravatar/*.html',
'templatetags/*.py'],
},
author = 'Drew Engelson',
author_email = '[email protected]',
url = 'https://github.com/tomatohater/django-simplegravatar/',
license = 'GPLv3',
description = 'A simpler Django template tag to add Gravatar support to your Django projects.',
long_description = 'A simpler Django template tag to add Gravatar support to your Django projects.',
keywords = 'django avatar gravatar',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)