-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup-gae.py
More file actions
18 lines (16 loc) · 804 Bytes
/
setup-gae.py
File metadata and controls
18 lines (16 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from setuptools import setup, find_packages
version = 'v3.3.0'
setup(name='perimeterx-python-wsgi-gae',
version=version,
license='MIT',
description='PerimeterX WSGI middleware for Goolge App Engine',
author='Johnny Tordgeman',
author_email='johnny@perimeterx.com',
url='https://github.com/PerimeterX/perimeterx-python-wsgi',
download_url='https://github.com/PerimeterX/perimeterx-python-wsgi/tarball/' + version,
packages=find_packages(exclude=['dev', 'test*']),
package_data={'perimeterx': ['templates/*']},
install_requires=['pystache>=0.5.1,<=0.5.4', 'requests>=2.18.4,<=2.20.1', 'requests-toolbelt'],
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python :: 2.7'])