version 1.0.0
Some checks failed
Actions / lint (push) Failing after 11s
Actions / build (push) Successful in 13s

This commit is contained in:
cswimr 2024-09-15 23:12:30 -04:00
parent cbd61e112d
commit 4becff70e6
Signed by: cswimr
GPG key ID: 3813315477F26F82
10 changed files with 933 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[tool.poetry]
name = "pyflowery"
version = "1.0.0"
description = "A Python API wrapper for the Flowery API"
authors = ["cswimr <seaswimmerthefsh@gmail.com>"]
license = "GPL 3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.10.5"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.7"
ruff = "^0.6.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"