python-packages/pydb/pyproject.toml

35 lines
862 B
TOML
Raw Permalink Normal View History

2022-10-19 02:48:12 -07:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydb"
2023-08-09 20:05:29 -07:00
dependencies = [
"mysql-connector-python",
"cx_oracle",
"snowflake-connector-python",
"pandas",
"python-logger",
"email-sender-simple",
"sqlparse",
"python-dotenv"
]
version = "0.5.17"
2022-10-19 02:48:12 -07:00
authors = [
2023-08-09 20:05:29 -07:00
{ name="Kyle Yasuda", email="kyasuda@westlakefinancial.com" },
2022-10-19 02:48:12 -07:00
]
2023-08-09 20:05:29 -07:00
description = "Database helper"
2022-10-19 02:48:12 -07:00
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
2023-08-09 20:05:29 -07:00
# [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"