- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
25 lines
586 B
TOML
25 lines
586 B
TOML
[tool.poetry]
|
|
name = "aitbc-sdk"
|
|
version = "0.1.0"
|
|
description = "AITBC client SDK for interacting with coordinator services"
|
|
authors = ["AITBC Team <team@aitbc.dev>"]
|
|
readme = "README.md"
|
|
packages = [{include = "aitbc_sdk", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
httpx = "^0.27.0"
|
|
pydantic = "^2.7.0"
|
|
aitbc-crypto = {path = "../aitbc-crypto"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.2.0"
|
|
pytest-asyncio = "^0.23.0"
|
|
black = "^24.4.2"
|
|
isort = "^5.13.2"
|
|
mypy = "^1.10.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|