-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.29 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
Weavel, automated prompt engineering and observability for LLM applications
"""
from setuptools import setup, find_namespace_packages
# Read README.md for the long description
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="weavel",
version="1.11.1"
packages=find_namespace_packages(),
entry_points={},
description="Weavel, automated prompt engineering and observability for LLM applications",
long_description=long_description,
long_description_content_type="text/markdown",
author="weavel",
url="https://github.com/weavel-ai/weavel-python",
install_requires=[
"httpx[http2]",
"pydantic>=2.4.2",
"typer[all]",
"pendulum",
"requests",
"cryptography",
"pyyaml",
"InquirerPy",
"python-dotenv",
"websockets",
"termcolor",
"watchdog",
"readerwriterlock",
"nest_asyncio",
"tenacity",
"ape-common>=0.2.0",
],
python_requires=">=3.8.10",
keywords=[
"weavel",
"agent",
"llm",
"evaluation",
"llm evaluation",
"prompt evaluation",
"dataset curation",
"prompt engineering",
"prompt optimization",
"AI Prompt Engineer",
],
)