mirror of
https://github.com/DarrylNixon/CrowdTLS-server.git
synced 2024-09-22 18:19:43 -07:00
44 lines
1 KiB
TOML
44 lines
1 KiB
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",
|
|
"tldextract>=3.4.4",
|
|
"rocketry>=2.5.1",
|
|
"uvloop>=0.17.0",
|
|
"python-dotenv>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
crowdtls = "crowdtls:main.run"
|
|
|
|
[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
|