File size: 391 Bytes
3e07cf5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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",
],
)
|