diff --git a/setup.py b/setup.py index 4c1683d..93d1d88 100644 --- a/setup.py +++ b/setup.py @@ -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: diff --git a/smart/logger/__init__.py b/smart/logger/__init__.py index 05496d5..88b329a 100644 --- a/smart/logger/__init__.py +++ b/smart/logger/__init__.py @@ -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']) \ No newline at end of file + store.write( args['row']) diff --git a/smart/top/__init__.py b/smart/top/__init__.py index e444963..f6079b2 100644 --- a/smart/top/__init__.py +++ b/smart/top/__init__.py @@ -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}