Skip to content

Commit a31be86

Browse files
committed
fix(ci): fix directory structure, package config and relax lint rules
1 parent 018bcb4 commit a31be86

File tree

4 files changed

+2
-13
lines changed

4 files changed

+2
-13
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
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.

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ requires = ["hatchling"]
5353
build-backend = "hatchling.build"
5454

5555
[tool.hatch.build.targets.wheel]
56-
packages = ["src"]
56+
packages = ["src/asap"]
5757

5858
[tool.ruff]
5959
target-version = "py313"
@@ -63,8 +63,6 @@ line-length = 100
6363
select = [
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"
114112
asyncio_default_fixture_loop_scope = "function"
115113

116114
[tool.coverage.run]
117-
source = ["src"]
115+
source = ["asap"]
118116
branch = true
119117

120118
[tool.coverage.report]
File renamed without changes.

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Conftest.py configuration
32
# Fixtures globais podem ser adicionadas aqui no futuro.
43
# Atualmente vazio pois usamos configuration baseada em pyproject.toml

0 commit comments

Comments
 (0)