Spaces:
Sleeping
Sleeping
enotkrutoy
commited on
Commit
•
2a39575
1
Parent(s):
9a6743f
Create setup.py
Browse files
setup.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import setup, find_packages
|
2 |
+
|
3 |
+
setup(
|
4 |
+
name="password-cracker",
|
5 |
+
version="0.1",
|
6 |
+
description="A simple password cracker app",
|
7 |
+
author="Your Name",
|
8 |
+
packages=find_packages(),
|
9 |
+
install_requires=[
|
10 |
+
'streamlit==1.23.1'
|
11 |
+
],
|
12 |
+
)
|