(3.0.0) cleaned up uv dependencies for pep 735, made a backwards incompatible change in the FloweryApiConfig model, and set up ruff formatting
Some checks failed
Actions / Build (push) Successful in 10s
Actions / Lint with Ruff & Pylint (push) Failing after 12s
Actions / Build Documentation (push) Failing after 6s

This commit is contained in:
cswimr 2024-11-15 00:10:38 -05:00
parent dcb5365fea
commit fde5dad155
Signed by: cswimr
GPG key ID: A9C162E867C851FA
11 changed files with 273 additions and 243 deletions

View file

@ -1,11 +1,11 @@
[project]
name = "pyflowery"
version = "2.1.3"
version = "3.0.0"
description = "A Python API wrapper for the Flowery API"
readme = "README.md"
requires-python = "<4.0,>=3.11"
dependencies = [
"aiohttp>=3.10.9",
"aiohttp>=3.11.2",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
@ -17,19 +17,24 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
documentation = [
[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.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",
"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.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pylint>=3.3.1",
"ruff>=0.6.9",
]
[tool.ruff]
line-length = 160
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"