2026-04-16 17:32:22 +05:30
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "authsome"
|
2026-05-01 12:28:48 +00:00
|
|
|
version = "0.2.3"
|
2026-04-16 17:32:22 +05:30
|
|
|
description = "A portable local authentication library for AI agents and developer tools"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = "MIT"
|
2026-04-17 14:22:10 +05:30
|
|
|
license-files = ["LICENSE"]
|
|
|
|
|
requires-python = ">=3.13"
|
2026-04-16 17:32:22 +05:30
|
|
|
authors = [
|
2026-04-17 14:22:10 +05:30
|
|
|
{ name = "Manoj Bajaj", email = "manojbajaj95@gmail.com" },
|
2026-04-16 17:32:22 +05:30
|
|
|
]
|
|
|
|
|
keywords = ["auth", "credentials", "oauth2", "api-key", "mcp", "agents"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
2026-04-17 14:22:10 +05:30
|
|
|
"Programming Language :: Python :: 3.13",
|
2026-04-16 17:32:22 +05:30
|
|
|
"Topic :: Security",
|
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pydantic>=2.0",
|
|
|
|
|
"requests>=2.28",
|
|
|
|
|
"cryptography>=41.0",
|
|
|
|
|
"keyring>=24.0",
|
2026-04-17 12:43:43 +05:30
|
|
|
"click>=8.0",
|
2026-04-27 14:19:10 +05:30
|
|
|
"loguru>=0.7",
|
2026-04-24 14:49:48 +05:30
|
|
|
"mitmproxy>=11.0",
|
2026-05-05 23:26:14 +05:30
|
|
|
"fastapi>=0.115",
|
|
|
|
|
"uvicorn>=0.30",
|
2026-05-06 15:54:20 +05:30
|
|
|
"python-multipart>=0.0.27",
|
2026-04-16 17:32:22 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.0",
|
|
|
|
|
"pytest-cov>=4.0",
|
2026-04-17 16:48:24 +05:30
|
|
|
"ruff>=0.9",
|
2026-04-22 16:14:39 +05:30
|
|
|
"ty",
|
2026-04-16 17:32:22 +05:30
|
|
|
]
|
|
|
|
|
|
2026-04-17 12:43:43 +05:30
|
|
|
[project.scripts]
|
2026-05-05 23:26:14 +05:30
|
|
|
authsome = "authsome.cli.main:cli"
|
2026-04-17 12:43:43 +05:30
|
|
|
|
2026-04-16 17:32:22 +05:30
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src/authsome"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|
2026-04-17 14:22:10 +05:30
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
|
source = ["authsome"]
|
|
|
|
|
branch = true
|
|
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
|
show_missing = true
|
|
|
|
|
skip_covered = false
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 120
|
|
|
|
|
target-version = "py313"
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "I", "UP"]
|
|
|
|
|
ignore = []
|