python-packages/pydb/pyproject.toml

24 lines
604 B
TOML
Raw Normal View History

2022-10-19 02:48:12 -07:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydb"
2022-10-20 21:32:45 -07:00
version = "0.0.3"
2022-10-19 02:48:12 -07:00
authors = [
{ name="Kyle Yasuda", email="suda@sudacode.com" },
]
description = "A python database wrapper"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["mysql-connector-python"]
# [project.urls]
# "Homepage" = "https://gitea.suda.codes/sudacode/pydb"
# "Bug Tracker" = "https://gitea.suda.codes/sudacode/pydb/issues"