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