-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (62 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (62 loc) · 1.79 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "auraone-sdk"
version = "0.1.2"
description = "Python SDK and CLI for running AuraOne hosted AI evaluations, analytics, training exports, and governance workflows."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "AuraOne" }]
keywords = [
"auraone",
"python-sdk",
"cli",
"ai-evaluation",
"model-evaluation",
"agent-evaluation",
"llm-evaluation",
"analytics",
"training-data",
"human-feedback",
"governance",
"robotics",
"graphql",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Console",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
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",
"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"
[tool.setuptools.packages.find]
include = ["aura*", "aura_one*"]
exclude = ["tests*"]