-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 995 Bytes
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
from setuptools import setup, find_packages
setup(
name="papimem",
version="0.1.3",
packages=find_packages(),
install_requires=[
'click',
'flask',
'redis',
'dsnparse',
'mitmproxy',
],
dependency_links=[
'https://github.com/mitmproxy/mitmproxy/tarball/2.0.x#egg=mitmproxy-dev'
],
entry_points={
'console_scripts': [
'papimem = papimem.cli:run',
],
},
author="Tomasz Czekanski",
author_email="[email protected]",
description="Python API Request-Response Memorizer",
long_description="""
Tool which allows to memorize requests and corresponding responses
made by your python application to external APIs.
""",
license="GPL",
keywords=[
"memorize requests", "api cache", "proxy", "analyze request-response"
],
url="https://github.com/czekan/papimem",
zip_safe=False,
package_data={'papimem': ['web/templates/*.html']},
)