Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
qywok
/
cryptocurrency_prediction
like
11
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c9cc206
cryptocurrency_prediction
/
restful
/
cutils
/
setup.py
tebakaja
feat: rewrite ML utilities to Cython
b93fa97
7 months ago
raw
Copy download link
history
blame
Safe
171 Bytes
from
setuptools
import
setup
from
Cython.Build
import
cythonize
import
numpy
setup(
ext_modules=cythonize(
"utilities.pyx"
),
include_dirs=[numpy.get_include()]
)