2024-10-10 15:30:15 -04:00
|
|
|
[project]
|
2024-09-15 23:12:30 -04:00
|
|
|
name = "pyflowery"
|
|
|
|
description = "A Python API wrapper for the Flowery API"
|
|
|
|
readme = "README.md"
|
2024-10-10 15:38:05 -04:00
|
|
|
requires-python = "<4.0,>=3.11"
|
2024-10-10 15:30:15 -04:00
|
|
|
dependencies = [
|
2024-11-15 00:10:38 -05:00
|
|
|
"aiohttp>=3.11.2",
|
2024-10-10 15:30:15 -04:00
|
|
|
]
|
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-10-10 15:38:05 -04:00
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Programming Language :: Python :: 3.13",
|
2024-09-17 23:46:27 -04:00
|
|
|
]
|
2024-11-15 11:14:33 -05:00
|
|
|
dynamic = ["version", "urls"]
|
2024-09-15 23:12:30 -04:00
|
|
|
|
2024-11-15 00:10:38 -05:00
|
|
|
[dependency-groups]
|
|
|
|
dev = [
|
|
|
|
"mypy>=1.13.0",
|
|
|
|
"pylint>=3.3.1",
|
|
|
|
"ruff>=0.7.3",
|
|
|
|
]
|
|
|
|
docs = [
|
2024-10-10 15:30:15 -04:00
|
|
|
"mkdocs>=1.6.1",
|
2024-11-15 00:10:38 -05:00
|
|
|
"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",
|
2024-10-10 15:30:15 -04:00
|
|
|
]
|
2024-09-18 09:55:25 -04:00
|
|
|
|
2024-11-15 00:10:38 -05:00
|
|
|
[tool.ruff]
|
|
|
|
line-length = 160
|
|
|
|
|
2024-11-15 11:14:33 -05:00
|
|
|
[tool.pylint]
|
|
|
|
max-line-length = 200
|
|
|
|
disable = [
|
|
|
|
"missing-module-docstring",
|
|
|
|
"too-many-arguments",
|
|
|
|
"too-many-positional-arguments",
|
|
|
|
"too-few-public-methods",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
source = "vcs"
|
|
|
|
|
|
|
|
[tool.hatch.build.hooks.vcs]
|
|
|
|
version-file = "pyflowery/version.py"
|
|
|
|
|
|
|
|
[tool.hatch.metadata.hooks.vcs.urls]
|
|
|
|
Homepage = "https://www.coastalcommits.com/cswimr/PyFlowery"
|
|
|
|
Issues = "https://www.coastalcommits.com/cswimr/PyFlowery/issues"
|
|
|
|
source_archive = "https://www.coastalcommits.com/cswimr/PyFlowery/archive/{commit_hash}.tar.gz"
|
|
|
|
|
2024-11-15 00:10:38 -05:00
|
|
|
[build-system]
|
2024-11-15 11:14:33 -05:00
|
|
|
requires = ["hatchling", "hatch-vcs"]
|
2024-11-15 00:10:38 -05:00
|
|
|
build-backend = "hatchling.build"
|