-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (69 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
75 lines (69 loc) · 1.78 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "arize_toolkit"
dynamic = ["version"]
description = "A library to interact with Arize AI APIs"
authors = [
{name = "Duncan McKinnon", email = "dmckinnon@arize.com"}
]
license = {text = "MIT"}
readme = "README.md"
homepage = "https://www.arize.com"
keywords = ["arize", "observability", "monitoring", "graphql"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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",
]
requires-python = ">=3.9,<3.15"
dependencies = [
"pandas>=0.25.3,<3.0",
"pydantic~=2.0",
"gql>=3.0.0,<4.0",
"requests>=2.28.1,<3.0",
"requests-toolbelt>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pytest-cov",
"coverage",
"snapshottest; python_version<'3.12'",
"mkdocs>=1.4.0",
"mkdocs-material>=9.0.0",
"black==25.1.0",
"flake8==7.2.0",
"isort==5.13.2",
"mdformat==0.7.22",
"pre-commit==3.5.0",
"ipykernel>=6.29.5",
]
integration = [
"python-dotenv",
]
prompt_optimizer = [
"tiktoken>=0.9.0",
"arize-phoenix-evals>=0.22.0",
"arize-phoenix-client>=1.0",
]
cli = [
"click>=8.0",
"rich>=13.0",
"tomli>=1.0;python_version<'3.11'",
"tomli-w>=1.0",
]
[project.scripts]
arize_toolkit = "arize_toolkit.cli.main:cli"
[tool.hatch.version]
source = "vcs"
[tool.flake8]
ignore = ["E266", "W503", "E203"]