bug fix: packaging and dependencies

data-collector
Steve L. Nyemba 4 years ago
parent 267f9350fd
commit 1b63ad187e

@ -7,12 +7,12 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
"name":"smart-top",
"version":"1.0.0",
"version":"1.0.2",
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
"license":"MIT",
"packages":["smart"]}
"packages":["smart","smart.top","smart.folder","smart.logger"]}
args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite']
args["install_requires"] = ['pandas','numpy','requests']
args["install_requires"] = ['pandas','numpy','requests',"git+https://dev.the-phi.com/steve/git/data-transport"]
args["url"] = "https://dev.the-phi.com/git/steve/smart-top.git"
#
#@TODO:

@ -49,4 +49,4 @@ def log(**args) :
store_type = ".".join([args['store'],STORE_MAP[_id]])
store_args = args['params']
store = transport.factory.instance(type=store_type,args=store_args)
store.write( args['row'])
store.write( args['row'])

@ -53,7 +53,7 @@ class Util:
return m
def read(args) :
def read(**args) :
"""
This function will perform the actual reads of process informations.
@return {user,pid,start,status, name, args, mem,cpu}

Loading…
Cancel
Save