PyFlowery/pyproject.toml

25 lines
639 B
TOML
Raw Normal View History

2024-09-15 23:12:30 -04:00
[tool.poetry]
name = "pyflowery"
2024-09-17 23:48:10 -04:00
version = "1.0.6"
2024-09-15 23:12:30 -04:00
description = "A Python API wrapper for the Flowery API"
authors = ["cswimr <seaswimmerthefsh@gmail.com>"]
readme = "README.md"
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-09-17 23:46:27 -04:00
]
2024-09-15 23:12:30 -04:00
[tool.poetry.dependencies]
python = "^3.11"
2024-09-15 23:43:58 -04:00
aiohttp = "^3.9.5"
2024-09-15 23:12:30 -04:00
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.7"
ruff = "^0.6.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"