-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 765 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 765 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
29
30
31
from setuptools import setup, find_namespace_packages
setup(
name="beta",
version="1.0.0",
packages=find_namespace_packages(),
include_package_data=True,
py_modules=["beta"],
install_requires=[
"rich",
"requests",
"bs4",
"lxml",
"pyopenssl",
"getmac",
"pyyaml"
],
entry_points={
'console_scripts': [
'beta=beta:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.12',
author="sh4dowByte",
author_email="Ahmad Juhdi <ahmadjuhdi007@gmail.com>",
description="Beta - A Python tool for scanning and information gathering",
)