PyFlowery/pyproject.toml
cswimr 25e61b9a79
All checks were successful
Actions / build (push) Successful in 16s
Actions / lint (push) Successful in 14s
Actions / docs (push) Successful in 23s
(2.0.1) pylint fixes
2024-09-18 10:03:29 -04:00

38 lines
1,011 B
TOML

[tool.poetry]
name = "pyflowery"
version = "2.0.1"
description = "A Python API wrapper for the Flowery API"
authors = ["cswimr <seaswimmerthefsh@gmail.com>"]
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.9.5"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.7"
ruff = "^0.6.5"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "1.6.1"
mkdocstrings = {extras = ["python"], version = "0.26.1"}
mkdocs-git-authors-plugin = "0.9.0"
mkdocs-git-revision-date-localized-plugin = "1.2.9"
mkdocs-material = {extras = ["imaging"], version = "9.5.35"}
mkdocs-redirects = "1.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"