NeuralQuant / setup.py
ArGrigorov's picture
Upload setup.py with huggingface_hub
3e07cf5 verified
Raw
History Blame Contribute Delete
391 Bytes
from setuptools import setup, find_packages
setup(
name="agiws-neural-quant",
version="0.1.0",
description="Universal neural network quantization library � int8, int4, NF4, BitNet 1.58",
python_requires=">=3.10",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"torch>=2.0",
"numpy>=1.24",
],
)