-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 820 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 820 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
import io
import os
from setuptools import setup, find_packages
current_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(current_dir, "README.md"), encoding="utf-8") as fd:
desc = fd.read()
setup(
name="poc_tool",
license='MIT',
version="1.2.3",
long_description=desc,
long_description_content_type="text/markdown",
description="Python Poc 还原原始http请求数据包以及常用工具集成化封装类,可以更快帮助您完成POC的书写及调试",
author="zhizhuo",
author_email="zhizhuoshuma@163.com",
url='https://github.com/zhizhuoshuma/poc_tool',
packages=find_packages(),
include_package_data=True,
install_requires=[
"requests",
"colorama",
"fake-useragent"
],
python_requires=">=3.7",
)