This repository was archived by the owner on Apr 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.36 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="LogFlow_Atos_Marc_Platini", # Replace with your own username
version="0.0.6",
author="Marc Platini",
author_email="marc.platini@gmail.com",
description="LogFlow aims at finding the correlations between the entries of logs files. It is split into 3 parts: a logparser, a relation learner and a tree building to show the correlations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bds-ailab/logflow",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: GPU",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
"Topic :: Text Processing",
"Topic :: Utilities"
],
python_requires='>=3.6.9',
install_requires=["numpy>=1.18.5","cython>=0.29.19","typing>=3.7.4.1","loguru>=0.5.0","h5py>=2.10.0","tqdm>=4.46.1","torch>=1.5.0","torchvision>=0.6.0","word2vec>=0.11.1", "pandas>=1.0.5"]
)