mirror of
https://github.com/turboderp-org/exllamav2.git
synced 2026-03-15 00:07:26 +00:00
22 lines
461 B
Python
22 lines
461 B
Python
from setuptools import setup
|
|
|
|
version = "0.0.0"
|
|
|
|
setup(
|
|
name = "exllamav2",
|
|
version = version,
|
|
packages = ["exllamav2", "exllamav2.generator"],
|
|
url = "https://github.com/turboderp/exllamav2",
|
|
license = "AGPL",
|
|
author = "bb",
|
|
install_requires = [
|
|
"pandas",
|
|
"ninja",
|
|
"fastparquet",
|
|
"torch>=2.0.1",
|
|
"safetensors>=0.3.2",
|
|
"sentencepiece>=0.1.97",
|
|
],
|
|
include_package_data = True,
|
|
)
|