-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 1.13 KB
/
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
28
29
30
31
32
33
__doc__ = """
An easy to use app that provides Stack Overflow style badges with a minimum ammount of effort in django
See the README file for details, usage info, and a list of gotchas.
"""
from setuptools import setup
setup(
name='django-badges',
version='0.1.6',
author='James Robert',
author_email='[email protected]',
description=('An easy to use app that provides Stack Overflow style badges'
'with a minimum ammount of effort in django'),
license='GPLv3',
keywords='django badges social',
url='http://bitbucket.org/jiaaro/django-badges/',
packages=['badges', 'badges.templatetags'],
package_data={'badges': ['badges/templates/badges/*.html']},
long_description=__doc__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)