forked from aimafan123/pypcaptools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 702 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
setup(
name="pypcaptools",
version="1.5.1",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=["dpkt==1.9.8", "scapy==2.6.0", "mysql-connector-python==9.1.0"],
author="ZGC-BUPT-aimafan",
author_email="chongrufan@nuaa.edu.cn",
description="一个用于解析pcap文件的python库",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ZGC-BUPT-aimafan/pypcaptools.git",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
)