-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 815 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (24 loc) · 815 Bytes
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
# Copyright Advanced Micro Devices, Inc.
#
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "skillscope"
version = "0.1.3"
description = "Routing and behavioral test harness for agent skills."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Advanced Micro Devices, Inc." }]
# The runner itself is standard library only, so a run needs no wheels beyond
# this package. PyYAML is the one exception: it reads the optional
# evals/machine.yml, which only CI planning touches.
dependencies = ["pyyaml>=6.0"]
[project.scripts]
skillscope = "skillscope.cli:main"
[tool.setuptools]
packages = ["skillscope"]
[tool.setuptools.package-data]
skillscope = ["data/*.json", "schema/*.json"]