(2.1.1) migrate to uv
Some checks failed
Actions / Build (push) Failing after 3s
Actions / Build Documentation (push) Failing after 3s
Actions / Lint with Ruff & Pylint (push) Failing after 12s

This commit is contained in:
cswimr 2024-10-10 15:30:15 -04:00
parent 93d55cda47
commit 8cf60f653a
Signed by: cswimr
GPG key ID: A9C162E867C851FA
5 changed files with 1340 additions and 1837 deletions

View file

@ -1,9 +1,12 @@
[tool.poetry]
[project]
name = "pyflowery"
version = "2.1.0"
version = "2.1.1"
description = "A Python API wrapper for the Flowery API"
authors = ["cswimr <seaswimmerthefsh@gmail.com>"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.10.9",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
@ -11,28 +14,19 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.9.5"
[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",
]
[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"
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pylint>=3.3.1",
"ruff>=0.6.9",
]