-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 830 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 830 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 = 'v2.0.0'
setup(name='perimeterx-python-3-wsgi',
version=version,
license='MIT',
description='PerimeterX Python 3 WSGI middleware',
author='Johnny Tordgeman',
author_email='johnny@perimeterx.com',
url='https://github.com/PerimeterX/perimeterx-python-3-wsgi',
download_url='https://github.com/PerimeterX/perimeterx-python-3-wsgi/tarball/' + version,
packages=find_packages(exclude=['dev', 'test*']),
package_data={'perimeterx': ['templates/*', "*.json"]},
install_requires=['pystache>=0.5.4', 'requests>=2.22.0', 'setuptools==41.4.0', 'Werkzeug==0.16.0', 'pycryptodome>=3.9.0'],
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python :: 3.7'])