-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
54 lines (48 loc) · 1.63 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
#!/usr/bin/env python
# encoding: utf-8
# 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='djangohmac',
url='https://github.com/thisissoon/djangohmac',
version=version,
author='SOON_',
author_email='[email protected]',
description='Provides easy integration of the HMAC signatures for '
'your REST Django Applications.',
long_description=long_description,
packages=[
'djangohmac',
],
install_requires=[
'django',
'six>=1.9.0',
],
classifiers=[
'Framework :: Django',
'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.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=['Django', 'HMAC', 'REST', 'Views', 'middleware'],
test_suite='tests',
)