python-packages/pydb/pyproject.toml
ksyasuda 3e539bfdea
All checks were successful
Build Changed / build_and_upload_changed_packages (push) Successful in 25s
update pydb
2023-08-09 20:05:29 -07:00

35 lines
862 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydb"
dependencies = [
"mysql-connector-python",
"cx_oracle",
"snowflake-connector-python",
"pandas",
"python-logger",
"email-sender-simple",
"sqlparse",
"python-dotenv"
]
version = "0.5.17"
authors = [
{ name="Kyle Yasuda", email="kyasuda@westlakefinancial.com" },
]
description = "Database helper"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
# [tool.setuptools.packages.find]
# where = ["pydb"]
[project.urls]
"Homepage" = "https://gitlab.westlakefinancial.com/data_engineering/python_package_registry/-/tree/main/pydb"
"Bug Tracker" = "https://gitlab.westlakefinancial.com/data_engineering/python_package_registry/-/issues"