Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions easy_postgres_engine/postgres_engine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

import pandas as pd
import psycopg2
import psycopg2.extras
Expand Down
3 changes: 1 addition & 2 deletions easy_postgres_engine/retry_decorator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import logging

from functools import wraps
import logging
from time import sleep


Expand Down
Empty file.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pandas==0.25.3
psycopg2-binary==2.8.4
pandas==1.3.2
psycopg2-binary==2.9.1
testing.postgresql==1.3.0
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,22 @@
setup(
name='easy_postgres_engine',
packages=['easy_postgres_engine'],
version='0.1',
version='0.2',
description='Engine class for easier connections to postgres databases',
author='Michael Doran',
author_email='mikrdoran@gmail.com',
url='https://github.com/miksyr/easy_postgres_engine',
download_url='https://github.com/miksyr/easy_postgres_engine/archive/v_01.tar.gz',
download_url='https://github.com/miksyr/easy_postgres_engine/archive/v_02.tar.gz',
keywords=['postgreSQL', 'postgres'],
install_requires=[
'pandas==0.25.3',
'psycopg2-binary==2.8.4',
'pandas==1.3.2',
'psycopg2-binary==2.9.1',
'testing.postgresql==1.3.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.9'
)