diff --git a/requirements.txt b/requirements.txt index 101182e..d4ca823 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ sklearn pandas +torch diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a26ae93 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup, find_packages + +setup( + name='loglizer', + version='1.0.0', + url='https://github.com/logpai/loglizer.git', + author='LogPAI', + author_email='info@logpai.com', + description='Machine learning-based log analysis toolkit for automated anomaly detection', + packages=find_packages(), + install_requires=['sklearn', 'pandas', 'torch', 'numpy'], +) \ No newline at end of file