-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 763 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 763 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
from setuptools import setup, find_packages
setup(
name="above",
version="2.8.1",
url="https://github.com/caster0x00/above",
author="Mahama Bazarov",
author_email="mahamabazarov@mailbox.org",
description="Network Security Sniffer",
long_description=open('README.md', encoding="utf8").read(),
long_description_content_type='text/markdown',
license="Apache-2.0",
keywords=['network security', 'network sniffer'],
packages=find_packages(),
install_requires=[
'scapy',
'colorama',
],
py_modules=['above.above_oui_dict'],
entry_points={
"console_scripts": ["above = above.above:main"],
},
python_requires='>=3.11',
include_package_data=True,
)