Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AItool
/
home-fasthtml
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
AItool
commited on
11 days ago
Commit
be53904
·
verified
·
1 Parent(s):
306cef0
Create setup.py
Browse files
Files changed (1)
hide
show
setup.py
+9
-0
setup.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
# setup.py
2
+
from setuptools import setup, find_packages
3
+
4
+
setup(
5
+
name="python-fasthtml",
6
+
version="0.1.0",
7
+
package_dir={"": "src"},
8
+
packages=find_packages(where="src"),
9
+
)