forked from Narsil/django-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.1 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, find_packages
setup(
name='django-badges',
version='0.2.4',
author='James Robert',
author_email='jiaaro@gmail.com',
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 = find_packages(),
include_package_data=True,
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'
]
)