Files
aitbc/packages/py/aitbc-crypto/pyproject.toml
AITBC System b033923756 chore: normalize file permissions across repository
- 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
2026-03-08 11:26:18 +01:00

64 lines
1.6 KiB
TOML

[project]
name = "aitbc-crypto"
version = "0.1.0"
description = "AITBC cryptographic utilities for zero-knowledge proofs and digital signatures"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.13"
authors = [
{name = "AITBC Team", email = "team@aitbc.dev"}
]
keywords = ["cryptography", "zero-knowledge", "ed25519", "signatures", "zk-proofs"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pydantic>=2.7.0",
"pynacl>=1.5.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0"
]
[project.urls]
Homepage = "https://github.com/oib/AITBC"
Documentation = "https://aitbc.bubuit.net/docs/"
Repository = "https://github.com/oib/AITBC.git"
"Bug Tracker" = "https://github.com/oib/AITBC/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["aitbc_crypto*"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true