Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aashishsec authored Jan 29, 2024
1 parent 67f3be3 commit 39e8981
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
from setuptools import setup, find_packages

setup(
name='portProbe',
version='1.0.2',
description='portProbe is a tool designed to efficiently probe for open ports. It will take both IP Address and Subdomains.',
author='AashishSec',
url='https://github.com/aashishsec/httpAlive',
packages=find_packages(),
install_requires=[
'sockets',
'ipaddress',
'colorama',
],
extras_require={
'dev': ['argparse', 'concurrent.futures','random'],
},
entry_points={
'console_scripts': [
'portProbe = portProbe.portProbe:main',
],
},
)

0 comments on commit 39e8981

Please sign in to comment.