24 lines
604 B
TOML
24 lines
604 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "pydb"
|
|
version = "0.0.3"
|
|
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"
|