-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.73 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
from setuptools import find_packages, setup
with open("./README.md", "r") as fh:
long_description = fh.read() # type: str
with open("./VERSION", "r") as vr:
version = vr.read() # type: str
setup(
name="scapy_helper",
description="Several features that should help you use Scapy",
long_description=long_description,
long_description_content_type="text/markdown",
author="Nex Sabre",
author_email="nexsabre@protonmail.com",
version=version,
url="https://github.com/NexSabre/scapy_helper",
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license="MIT",
install_requires=["tabulate~=0.8.7", "pyperclip==1.8.2"],
entry_points={
"console_scripts": [
"hstrip = scapy_helper.utils.hstrip:hstrip",
"hhstrip = scapy_helper.utils.hhstrip:hhstrip",
],
},
)