21 lines
392 B
TOML
21 lines
392 B
TOML
|
[project]
|
||
|
name = "materia-client"
|
||
|
version = "0.1.0"
|
||
|
description = "Default template for PDM package"
|
||
|
authors = [
|
||
|
{name = "L-Nafaryus", email = "l.nafaryus@gmail.com"},
|
||
|
]
|
||
|
dependencies = [
|
||
|
"httpx>=0.27.0",
|
||
|
]
|
||
|
requires-python = ">=3.11"
|
||
|
readme = "README.md"
|
||
|
license = {text = "MIT"}
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["pdm-backend"]
|
||
|
build-backend = "pdm.backend"
|
||
|
|
||
|
[tool.pdm]
|
||
|
distribution = true
|