| 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", | |
| ], | |
| ) | |