materia/pyproject.toml

44 lines
903 B
TOML
Raw Normal View History

[project]
name = "materia"
2024-07-31 14:59:22 +05:00
version = "0.1.1"
description = "Materia is a simple and fast cloud storage"
2024-05-07 16:49:30 +05:00
authors = [
{name = "L-Nafaryus", email = "l.nafaryus@gmail.com"},
2024-05-07 16:49:30 +05:00
]
2024-08-03 01:01:01 +05:00
requires-python = ">=3.12,<3.13"
2024-05-07 16:49:30 +05:00
readme = "README.md"
license = {text = "MIT"}
2024-05-07 16:49:30 +05:00
2024-07-31 14:59:22 +05:00
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
reportGeneralTypeIssues = false
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.pdm]
distribution = false
2024-08-14 00:56:30 +05:00
[tool.pdm.dev-dependencies]
dev = [
"-e file:///${PROJECT_ROOT}/packages/server",
"-e file:///${PROJECT_ROOT}/packages/frontend",
"-e file:///${PROJECT_ROOT}/packages/docs",
2024-08-14 00:56:30 +05:00
]
2024-07-31 14:59:22 +05:00
[tool.pdm.resolution]
respect-source-order = true
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
[[tool.pdm.source]]
name = "elnafo-vcs"
url = "https://vcs.elnafo.ru/api/packages/L-Nafaryus/pypi"
verify_ssl = true