Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Asish22
/
code-crawler
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
juliaturc
commited on
Oct 22, 2024
Commit
6c5df21
·
1 Parent(s):
efee316
Add setup.py file, otherwise `pip install -e .` won't work.
Browse files
Files changed (1)
hide
show
setup.py
+4
-0
setup.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
# Work-around the fact that `pip install -e .` doesn't work with `pyproject.toml` files.
2
+
from setuptools import setup
3
+
4
+
setup()