SeaUtils/pyproject.toml

30 lines
907 B
TOML
Raw Normal View History

2024-08-14 04:12:51 -04:00
[project]
name = "seautils"
version = "1.0.0"
authors = [
{ name="Seaswimmer", email="seaswimmerthefsh@gmail.com" },
]
description = "A Python library for utility functions, used in SeaCogs and for third party integrations with the Aurora cog."
readme = "README.md"
requires-python = ">=3.10, <3.12"
2024-12-30 10:21:00 -05:00
dependencies = [
"aiosqlite>=0.20.0",
"phx-class-registry>=5.1.0",
"pip>=24.3.1",
"pydantic>=2.10.4",
"red-discordbot>=3.5.14",
]
2024-08-14 04:12:51 -04:00
classifiers = [
"Programming Language :: Python :: 3",
2024-08-14 04:17:08 -04:00
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
2024-08-14 04:12:51 -04:00
"Operating System :: OS Independent",
]
[project.urls]
2024-12-30 10:21:00 -05:00
Homepage = "https://www.coastalcommits.com/cswimr/SeaUtils"
Issues = "https://www.coastalcommits.com/cswimr/SeaUtils/issues"
2024-08-14 04:12:51 -04:00
[build-system]
2024-08-14 04:14:26 -04:00
requires = ["hatchling", "Red-DiscordBot", "pydantic", "phx-class-registry", "aiosqlite"]
2024-08-14 04:12:51 -04:00
build-backend = "hatchling.build"