-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (82 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
94 lines (82 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "authsome"
version = "0.5.0"
description = "A portable local authentication library for AI agents and developer tools"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.13"
authors = [
{ name = "Manoj Bajaj", email = "manojbajaj95@gmail.com" },
]
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",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pydantic>=2.0",
"pydantic-settings>=2.0",
"requests>=2.28",
"cryptography>=41.0",
"keyring>=24.0",
"click>=8.0",
"loguru>=0.7",
"mitmproxy>=11.0",
"fastapi>=0.115",
"uvicorn>=0.30",
"python-multipart>=0.0.27",
"py-key-value-aio[disk]",
"aiosqlite>=0.20",
"asyncpg>=0.30",
"pyjwt>=2.12.1",
"argon2-cffi>=25.1.0",
"base58>=2.1.1",
"posthog>=3.0",
"browser-cookie3>=0.19",
"opentelemetry-api>=1.42.1",
"opentelemetry-sdk>=1.42.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=1.3.0",
"pytest-cov>=4.0",
"ruff>=0.9",
"ty",
"httpx>=0.28.1",
"pre-commit>=4.6.0",
]
[project.scripts]
authsome = "authsome.cli.main:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/authsome"]
[tool.hatch.build.targets.sdist.force-include]
"src/authsome/ui/web" = "src/authsome/ui/web"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[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", "N", "C90"]
ignore = []
[tool.ruff.lint.mccabe]
max-complexity = 20
[dependency-groups]
dev = []