-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
62 lines (54 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# encoding: utf-8
"""
Flask-HMAC
---------
Provides easy integration of the HMAC signature for Flask routes
"""
# Third Party Libs
from setuptools import setup
# Generate a Long Decription for the PyPi page which is the README.rst
# Plus the CHANGELOG.rst
long_description = open('./README.rst').read()
changelog = open('./CHANGELOG.rst').read()
long_description += '\n' + changelog
# Get Version
version = open('./VERSION.txt').read().strip()
setup(
name='flaskhmac',
url='https://github.com/thisissoon/Flask-HMAC',
version=version,
author='SOON_',
author_email='dorks@thisissoon.com',
description='Provides easy integration of the HMAC signatures for '
'your REST Flask Applications.',
long_description=long_description,
packages=[
'flask_hmac',
],
install_requires=[
'flask',
'six>=1.9.0',
],
classifiers=[
'Framework :: Flask',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: Public Domain'
],
license='Public Domain',
keywords=['Flask', 'HMAC', 'REST', 'Views']
)