-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 966 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
28
29
30
31
32
33
34
"""
Flask-HMAC
"""
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='Flask-HMAC',
version='0.1.3',
url='http://github.com/jamonation/flask-hmac',
license='WTFPL',
author='Jamon Camisso',
author_email='jamonation+flask@gmail.com',
description='Flask HMAC generator, checker, and route decorator',
long_description=long_description,
py_modules=['flask_hmac'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['Flask'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)