-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 2.35 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (72 loc) · 2.35 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "auraone-sdk"
version = "0.2.0"
description = "Python SDK and CLI for AuraOne hosted AI evaluations, with sync and async clients for templates, runs, analytics, training, and governance."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "AuraOne" }]
keywords = [
"auraone",
"ai-evaluation",
"evaluation-api",
"hosted-evaluation",
"python-sdk",
"async-client",
"command-line-interface",
"model-evaluation",
"agent-evaluation",
"llm-evaluation",
"ai-governance",
"graphql-client",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"httpx>=0.27.0",
]
[project.optional-dependencies]
async = ["httpx[http2]>=0.27.0"]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23.0",
"build>=1.0",
"twine>=5.0",
"tomli>=2.0; python_version < '3.11'",
]
[project.scripts]
aura = "aura.cli:main"
[project.urls]
Homepage = "https://www.auraone.ai/developers"
Documentation = "https://www.auraone.ai/resources/docs"
Source = "https://github.com/auraoneai/sdk-python"
Issues = "https://github.com/auraoneai/sdk-python/issues"
Changelog = "https://github.com/auraoneai/sdk-python/blob/main/CHANGELOG.md"
Security = "https://github.com/auraoneai/sdk-python/blob/main/SECURITY.md"
CI = "https://github.com/auraoneai/sdk-python/actions/workflows/ci.yml"
PyPI = "https://pypi.org/project/auraone-sdk/"
Releases = "https://github.com/auraoneai/sdk-python/releases"
"TypeScript SDK" = "https://www.npmjs.com/package/@auraone/sdk"
"Local EvalKit" = "https://pypi.org/project/auraone-evalkit/"
[tool.setuptools.packages.find]
include = ["aura*", "aura_one*"]
exclude = ["tests*"]