forked from yoyowallet/django-idempotency-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (52 loc) · 1.75 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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='django-idempotency-key',
version='1.0.3+innoteq1',
author='Del Hyman-Jones',
author_email='[email protected]',
description='Django middleware for idempotency key support in view and viewset functions.',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
platforms=['Any'],
keywords=['django', 'idempotency', 'key', 'idempotency-key', 'middleware'],
url='https://github.com/yoyowallet/django-idempotency-key',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'Django>=1.11',
'six',
'backports.tempfile',
],
project_urls={
'Documentation': 'https://github.com/yoyowallet/django-idempotency-key/blob/master/README.md',
'Source': 'https://github.com/yoyowallet/django-idempotency-key',
},
packages=[
'idempotency_key'
],
setup_requires=[
'setuptools>=38.6.0'
],
include_package_data=True,
zip_safe=False,
)