mirror of
https://github.com/DarrylNixon/CrowdTLS-server.git
synced 2024-09-22 18:19:43 -07:00
38 lines
920 B
TOML
38 lines
920 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools>=67.8"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "crowdtls"
|
||
|
version = "0.0.1"
|
||
|
authors = [{ name = "crowdtls", email = "git@nixon.mozmail.com" }]
|
||
|
description = "Backend server for CrowdTLS browser extension"
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.9"
|
||
|
license = { text = "MIT" }
|
||
|
dependencies = [
|
||
|
"fastapi==0.95.2",
|
||
|
"uvicorn==0.22.0",
|
||
|
"loguru==0.7.0",
|
||
|
"pydantic==1.10.8",
|
||
|
"asyncpg==0.27.0",
|
||
|
"greenlet==2.0.2",
|
||
|
"sqlmodel==0.0.8",
|
||
|
"sqlalchemy==1.4.41",
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
homepage = "https://github.com/DarrylNixon/CrowdTLS"
|
||
|
repository = "https://github.com/DarrylNixon/CrowdTLS-server"
|
||
|
|
||
|
[tool.setuptools]
|
||
|
py-modules = ["crowdtls"]
|
||
|
|
||
|
[tool.bandit]
|
||
|
exclude_dirs = ["/doc", "/build"]
|
||
|
# TODO: Stop skipping B104 (binding on 0.0.0.0), is there a nice way to get a good docker bind address?
|
||
|
skips = ["B104"]
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 120
|