forked from Arize-ai/prompt-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (95 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
104 lines (95 loc) · 2.64 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "prompt-learning-enhanced"
version = "0.1.0"
description = "Enhanced prompt learning SDK with CLI, Google AI integration, pricing controls, and production features"
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Arize AI", email = "pjindal@arize.com" },
{ name = "Nouamane Benbrahim", email = "nouamane.benbrahim@protonmail.com" },
{ name = "Priyan Jindal", email = "priyan.jindal@arize.ai" }
]
keywords = ["prompt-learning", "llm", "optimization", "ai", "cli", "google-ai", "openai", "meta-prompt", "natural-language-feedback"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Console",
"Operating System :: OS Independent",
]
requires-python = ">=3.12"
dependencies = [
"arize-phoenix-evals",
"arize-phoenix-client",
"tiktoken",
"openai",
"arize-toolkit",
"pandas",
"scikit-learn",
"nest-asyncio",
"swebench",
# Enhanced CLI and provider functionality
"click",
"google-genai",
"pillow",
"requests",
"pydantic",
"httpx",
"rich",
"click-spinner",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-mock",
"black",
"pre-commit",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
]
[project.urls]
Homepage = "https://github.com/Arize-ai/prompt-learning"
Repository = "https://github.com/Arize-ai/prompt-learning"
Documentation = "https://github.com/Arize-ai/prompt-learning#readme"
Issues = "https://github.com/Arize-ai/prompt-learning/issues"
[project.scripts]
prompt-learn = "cli.main:cli"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["optimizer_sdk*", "cli*", "providers*", "core*", "interfaces*", "config*"]
[tool.setuptools.package-data]
"optimizer_sdk" = ["templates/*.txt"]
"cli" = ["config/*.yaml"]
[tool.black]
line-length = 88
target-version = ['py312']
exclude = '''
/(
\.venv
| \.git
| \.pytest_cache
| __pycache__
| build
| dist
| \.egg-info
)/
'''
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"