-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start refactoring * continue refactoring, + docs * update readme Signed-off-by: Caleb Grant <[email protected]> * update docs, lint and format Signed-off-by: Caleb Grant <[email protected]> * cleanup, fix build issues Signed-off-by: Caleb Grant <[email protected]> * update ci python versions Signed-off-by: Caleb Grant <[email protected]> --------- Signed-off-by: Caleb Grant <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,26 @@ authors = [{ name = "Caleb Grant", email = "[email protected]" }] | |
description = "A Python library for upserting data into postgres." | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.10,<3.12" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
"Topic :: Database", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", | ||
] | ||
dependencies = ["psycopg2-binary >= 2.9.9", "tabulate >= 0.9.0"] | ||
dependencies = ["psycopg2-binary==2.9.9", "tabulate==0.9.0"] | ||
keywords = ["postgresql", "postgres", "dbms", "etl", "upsert", "database"] | ||
|
||
[project.scripts] | ||
pg_upsert = "pg_upsert.pg_upsert:main" | ||
pg_upsert = "pg_upsert:cli" | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "pg_upsert.pg_upsert.__version__" } | ||
version = { attr = "pg_upsert._version.__version__" } | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/geocoug/pg_upsert" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters