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