initial commit

This commit is contained in:
ksyasuda
2022-10-19 02:48:12 -07:00
parent c24cba68e9
commit 1869ed4057
10 changed files with 423 additions and 0 deletions

23
pydb/pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydb"
version = "0.0.1"
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"