From 134275b8a41464ce2252aa4c96613c7c177f3d69 Mon Sep 17 00:00:00 2001 From: Michael L Date: Thu, 3 Sep 2020 17:06:17 -0500 Subject: [PATCH] Create setup.py --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c6b73f0 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#/bin/python3 +#https://pypi.org/project/setuppy-generator/ +#https://pypi.org/project/setupcfg-generator/ +from setuptools import setup + +setup( +install_requires=['requirements.txt'], + name='hashtopolis-agent-python', + version='0.6.0', + url='https://github.com/s3inlc/hashtopolis-agent-python', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + install_requires=[ + 'requests', + 'psutil', + ], + packages=[ + 'htpclient', + ], + py_modules=[ + '__main__', + ], +)