-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
48 lines (43 loc) · 1.32 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
"""HTTP tools setup."""
from setuptools import (
find_packages,
setup)
from pathlib import Path
def read(rel_path):
init = Path(__file__).resolve().parent / rel_path
return init.read_text('utf-8', 'ignore')
description = ('httptools helps you to capture, repeat'
' and live intercept HTTP requests. It '
'is built on top of '
'[mitmproxy](https://mitmproxy.org/)')
setup(
name='http-tools',
version='5.0.0',
description=description,
author='Ajin Abraham',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
('License :: OSI Approved :: GNU Lesser '
'General Public License v3 or later (LGPLv3+)'),
'Programming Language :: Python :: 3.10',
],
packages=find_packages(include=[
'http_tools', 'http_tools.*',
'http_tools.modules', 'http_tools.web',
]),
entry_points={
'console_scripts': [
'httptools = http_tools.__main__:main',
],
},
include_package_data=True,
url='https://github.com/MobSF/httptools',
long_description=read('README.md'),
long_description_content_type='text/markdown',
install_requires=[
'mitmproxy==11.0.0',
'markupsafe>=3.0.2',
],
)