-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.9 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "OminiRTKSync"
version = "1.0.0"
description = "OminiRoute Universal Token & Connection Synchronizer"
readme = "README.md"
authors = [
{ name = "Eliel Sousa", email = "eliel@pathbit.co" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["omniroute", "oauth", "token-sync", "llm", "antigravity", "claude-code"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
# SAML 2.0 nao entra no fluxo padrao: exige uma biblioteca que assine e confira
# XML (Exclusive XML Canonicalization 1.0, verificacao RSA e defesa contra XML
# Signature Wrapping), e nada disso existe na biblioteca padrao do Python. O
# OpenID Connect, ao contrario, e implementado com stdlib pura e nao depende de
# nada declarado aqui. Enquanto esta dependencia nao estiver na imagem, a aba
# SAML aparece desabilitada e o painel recusa liga-lo.
[project.optional-dependencies]
saml = ["python3-saml>=1.16"]
test = [
"docker>=7.0.0",
"testcontainers>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/pathbit/OminiRTkSync"
Repository = "https://github.com/pathbit/OminiRTkSync"
Issues = "https://github.com/pathbit/OminiRTkSync/issues"
[project.scripts]
ominirtksync = "omini_rtksync.cli:main"
OminiRTKSync = "omini_rtksync.cli:main"
omini-rtksync = "omini_rtksync.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["locales/*.json"]
# A suite tem de rodar sem depender de `pip install -e`. Sem isto, o repo
# que por acaso tem uma instalacao editavel na maquina passa e o irmao
# reprova na coleta -- com o mesmo codigo. Foi o que aconteceu aqui.
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]