forked from IlyasMoutawwakil/py-txi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (25 loc) · 978 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from pathlib import Path
from setuptools import find_packages, setup
PY_TXI_VERSION = "0.7.0"
common_setup_kwargs = {
"author": "Ilyas Moutawwakil",
"author_email": "[email protected]",
"description": "A Python wrapper around TGI and TEI servers",
"keywords": ["tgi", "llm", "tei", "embedding", "huggingface", "docker", "python"],
"url": "https://github.com/IlyasMoutawwakil/py-txi",
"long_description_content_type": "text/markdown",
"long_description": (Path(__file__).parent / "README.md").read_text(encoding="UTF-8"),
"platforms": ["linux", "windows", "macos"],
"classifiers": [
"Programming Language :: Python :: 3",
"Natural Language :: English",
],
}
setup(
name="py-txi",
version=PY_TXI_VERSION,
packages=find_packages(),
install_requires=["docker", "huggingface-hub", "numpy", "aiohttp"],
extras_require={"quality": ["ruff"], "testing": ["pytest"]},
**common_setup_kwargs,
)