mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
requirements fix
This commit is contained in:
parent
67a0028819
commit
ed20b91fe5
2 changed files with 14 additions and 2 deletions
|
@ -5,3 +5,4 @@ tqdm
|
|||
psutil
|
||||
scipy
|
||||
matplotlib
|
||||
setuptools_rust
|
||||
|
|
13
setup.py
13
setup.py
|
@ -1,8 +1,19 @@
|
|||
#!/usr/bin/env python3
|
||||
import setuptools
|
||||
import sys
|
||||
|
||||
try:
|
||||
from setuptools_rust import Binding, RustExtension
|
||||
except ImportError:
|
||||
import subprocess
|
||||
|
||||
errno = subprocess.call([sys.executable, "-m", "pip", "install", "setuptools-rust"])
|
||||
if errno:
|
||||
print("Please install setuptools-rust package")
|
||||
raise SystemExit(errno)
|
||||
else:
|
||||
from setuptools_rust import Binding, RustExtension
|
||||
|
||||
# TODO: rewrite it in rust
|
||||
|
||||
REQUIRES = [
|
||||
"numpy",
|
||||
|
|
Loading…
Reference in a new issue