-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 945 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
packages = { find = { where = ["src"], exclude = ["tests*", "logs*"] } }
# Include package data
include-package-data = true
[tool.setuptools.package-data]
"asteroid_sdk.supervision.prompts" = ["*.jinja"]
[project]
name = "asteroid_sdk"
version = "0.1.19"
description = "A Python SDK for Asteroid"
authors = [
{ name = "Asteroid", email = "founders@asteroid.ai" }
]
license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
"requests>=2.28.0",
"openai>=1.0.0",
"anthropic>=0.3.0",
"litellm>=0.1.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"inspect-ai>=0.3.49",
"jinja2>=3.1.4",
"jsonschema>=4.19.0",
"pytest>=7.0",
"google-generativeai>=0.1.0",
]
[project.entry-points.inspect_ai]
asteroid_sdk = "asteroid_sdk.supervision.inspect_ai._registry"