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' ], )