PyFlowery/pyproject.toml
cswimr a7113babb7
Some checks failed
Actions / Build (push) Successful in 18s
Actions / Lint with Ruff & Pylint (push) Failing after 15s
Actions / Build Documentation (push) Successful in 24s
(3.0.1) mypy compliance
2024-11-15 09:51:11 -05:00

40 lines
1,008 B
TOML

[project]
name = "pyflowery"
version = "3.0.1"
description = "A Python API wrapper for the Flowery API"
readme = "README.md"
requires-python = "<4.0,>=3.11"
dependencies = [
"aiohttp>=3.11.2",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pylint>=3.3.1",
"ruff>=0.7.3",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-git-authors-plugin>=0.9.2",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material[imaging]>=9.5.44",
"mkdocs-redirects>=1.2.2",
"mkdocstrings[python]>=0.27.0",
]
[tool.ruff]
line-length = 160
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"