bug fixes and dependencies
This commit is contained in:
parent
469c6f89a2
commit
98ef8a848e
2
setup.py
2
setup.py
|
@ -19,7 +19,7 @@ args = {
|
||||||
|
|
||||||
"packages": find_packages(include=['info','transport', 'transport.*'])}
|
"packages": find_packages(include=['info','transport', 'transport.*'])}
|
||||||
args["keywords"]=['mongodb','duckdb','couchdb','rabbitmq','file','read','write','s3','sqlite']
|
args["keywords"]=['mongodb','duckdb','couchdb','rabbitmq','file','read','write','s3','sqlite']
|
||||||
args["install_requires"] = ['pyncclient','duckdb-engine','pymongo','sqlalchemy','pandas','typer','pandas-gbq','numpy','cloudant','pika','nzpy','termcolor','boto3','boto','pyarrow','google-cloud-bigquery','google-cloud-bigquery-storage','flask-session','smart_open','botocore','psycopg2-binary','mysql-connector-python','numpy','pymssql','pyspark','pydrill','sqlalchemy_drill']
|
args["install_requires"] = ['pyncclient','duckdb-engine','pymongo','sqlalchemy','pandas','typer','pandas-gbq','numpy','cloudant','pika','nzpy','termcolor','boto3','boto','pyarrow','google-cloud-bigquery','google-cloud-bigquery-storage','flask-session','smart_open','botocore','psycopg2-binary','mysql-connector-python','numpy','pymssql','pyspark','pydrill','sqlalchemy_drill',"git+https://github.com/lnyemba/plugins-ix"]
|
||||||
args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git"
|
args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git"
|
||||||
args['scripts'] = ['bin/transport']
|
args['scripts'] = ['bin/transport']
|
||||||
args['classifiers'] = ['Programming Language :: Python :: 3',
|
args['classifiers'] = ['Programming Language :: Python :: 3',
|
||||||
|
|
|
@ -19,7 +19,7 @@ class IO:
|
||||||
"""
|
"""
|
||||||
def __init__(self,**_args):
|
def __init__(self,**_args):
|
||||||
_agent = _args['agent']
|
_agent = _args['agent']
|
||||||
plugins = _args['plugins'] if 'plugins' not in _args else None
|
plugins = _args['plugins'] if 'plugins' in _args else None
|
||||||
|
|
||||||
self._agent = _agent
|
self._agent = _agent
|
||||||
self._ixloader = plugin_ix.Loader () #--
|
self._ixloader = plugin_ix.Loader () #--
|
||||||
|
|
Loading…
Reference in New Issue