forked from mediapredict/resigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.11 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
__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='resigner',
version='0.3.7',
author='Mediapredict',
author_email='[email protected]',
description=('Django app that provides a way to simply secure your APIs'),
license='GPLv3',
keywords='django api signed',
url='https://github.com/mediapredict/resigner',
packages=['resigner', 'resigner.migrations'],
package_data={},
install_requires=[
"django >= 3.0",
"requests >= 2.5",
],
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'
]
)