PyFlowery/pyproject.toml

33 lines
804 B
TOML
Raw Normal View History

2024-10-10 15:30:15 -04:00
[project]
2024-09-15 23:12:30 -04:00
name = "pyflowery"
2024-10-10 15:30:15 -04:00
version = "2.1.1"
2024-09-15 23:12:30 -04:00
description = "A Python API wrapper for the Flowery API"
readme = "README.md"
2024-10-10 15:30:15 -04:00
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.10.9",
]
2024-09-17 23:46:27 -04:00
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
2024-09-17 23:48:10 -04:00
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2024-09-17 23:46:27 -04:00
]
2024-09-15 23:12:30 -04:00
2024-10-10 15:30:15 -04:00
[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",
]
2024-10-10 15:30:15 -04:00
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pylint>=3.3.1",
"ruff>=0.6.9",
]