PyFlowery/pyproject.toml
cswimr 8cf60f653a
Some checks failed
Actions / Build (push) Failing after 3s
Actions / Build Documentation (push) Failing after 3s
Actions / Lint with Ruff & Pylint (push) Failing after 12s
(2.1.1) migrate to uv
2024-10-10 15:30:15 -04:00

32 lines
804 B
TOML

[project]
name = "pyflowery"
version = "2.1.1"
description = "A Python API wrapper for the Flowery API"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.10.9",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.optional-dependencies]
documentation = [
"mkdocs>=1.6.1",
"mkdocs-git-authors-plugin>=0.9.0",
"mkdocs-git-revision-date-localized-plugin>=1.2.9",
"mkdocs-material[imaging]>=9.5.40",
"mkdocs-redirects>=1.2.1",
"mkdocstrings[python]>=0.26.1",
]
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pylint>=3.3.1",
"ruff>=0.6.9",
]