-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 851 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
31
32
33
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(
name="pathfinder",
version="0.1.0",
packages=find_packages(exclude=["tests*"]),
license="MIT",
description="A package for LLM-querying and output parsing.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"accelerate",
"transformers",
"optimum",
"einops",
"tiktoken", # for databricks models
"hf_transfer", # fast transfer of models
# vllm
# APIs
"backoff",
"openai",
"mistralai",
"anthropic",
# path-finder specific
"pygtrie",
"numpy",
],
url="https://github.com/giorgiopiatti/pathfinder",
author="Giorgio Piatti",
)