-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
41 lines (38 loc) · 1.37 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
34
35
36
37
38
39
40
41
__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='1.1.0',
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://djangobadges.com',
packages=['badges', 'badges.templatetags', 'badges.migrations'],
package_data={'badges': ['badges/templates/badges/*.html']},
install_requires=[
"django >= 1.7",
"Pillow",
"future"
],
long_description=__doc__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)