File tree Expand file tree Collapse file tree 4 files changed +2
-13
lines changed
Expand file tree Collapse file tree 4 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 22
33> A streamlined, scalable, asynchronous protocol for agent-to-agent communication and task coordination.
44
5- [ ![ CI] ( https://github.com/asap-protocol/asap-protocol/actions/workflows/ci.yml/badge.svg )] ( https://github.com/asap-protocol/asap-protocol/actions/workflows/ci.yml )
6- [ ![ codecov] ( https://codecov.io/gh/asap-protocol/asap-protocol/graph/badge.svg?token=placeholder )] ( https://codecov.io/gh/asap-protocol/asap-protocol )
7- [ ![ PyPI] ( https://img.shields.io/pypi/v/asap-protocol )] ( https://pypi.org/project/asap-protocol/ )
8- [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-green )] ( LICENSE )
9- [ ![ Docs] ( https://img.shields.io/github/deployments/asap-protocol/asap-protocol/github-pages )] ( https://asap-protocol.org )
10-
11- ---
12-
135## Overview
146
157** ASAP Protocol** is a Python library that implements the ASAP specification for building interoperable AI agents. It provides a robust, type-safe foundation for agent-to-agent communication using standard HTTP and JSON-RPC.
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ requires = ["hatchling"]
5353build-backend = " hatchling.build"
5454
5555[tool .hatch .build .targets .wheel ]
56- packages = [" src" ]
56+ packages = [" src/asap " ]
5757
5858[tool .ruff ]
5959target-version = " py313"
@@ -63,8 +63,6 @@ line-length = 100
6363select = [
6464 " E" , # pycodestyle errors
6565 " F" , # pyflakes
66- " I" , # isort
67- " UP" , # pyupgrade
6866 " B" , # flake8-bugbear
6967 " SIM" , # flake8-simplify
7068 " ASYNC" , # flake8-async
@@ -114,7 +112,7 @@ asyncio_mode = "auto"
114112asyncio_default_fixture_loop_scope = " function"
115113
116114[tool .coverage .run ]
117- source = [" src " ]
115+ source = [" asap " ]
118116branch = true
119117
120118[tool .coverage .report ]
File renamed without changes.
Original file line number Diff line number Diff line change 1-
21# Conftest.py configuration
32# Fixtures globais podem ser adicionadas aqui no futuro.
43# Atualmente vazio pois usamos configuration baseada em pyproject.toml
You can’t perform that action at this time.
0 commit comments