nmap / setup.py
enotkrutoy's picture
Update setup.py
108ae0f verified
raw
history blame contribute delete
369 Bytes
from setuptools import setup, find_packages
setup(
name="password-cracker",
version="0.1",
description="A simple Streamlit application for cracking passwords.",
author="Your Name",
packages=find_packages(),
install_requires=[
'streamlit==1.23.1',
'cowsay==5.0.0',
'rich==13.4.0',
'python-dotenv==1.0.0'
],
)