mirror of
https://github.com/peridotbuild/pdot_common.git
synced 2024-12-04 18:46:26 +00:00
27 lines
613 B
TOML
27 lines
613 B
TOML
[project]
|
|
name = "pdot_common"
|
|
version = "0.0.1"
|
|
description = "Common Python library for Peridot projects"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi == 0.99.0",
|
|
"fastapi-pagination == 0.12.5",
|
|
"authlib == 1.2.1",
|
|
"httpx == 0.24.1",
|
|
"tortoise-orm[asyncpg] == 0.19.3",
|
|
"temporalio == 1.2.0"
|
|
]
|
|
authors = [
|
|
{ name = "Mustafa Gezen", email = "mustafa@rockylinux.org" }
|
|
]
|
|
maintainers = [
|
|
{ name = "Mustafa Gezen", email = "mustafa@rockylinux.org" }
|
|
]
|
|
|
|
[project.license]
|
|
file = "LICENSE"
|
|
|
|
[tool.setuptools]
|
|
package-dir = { "pdot_common" = "pdot_common" }
|