-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
"""This file is the init file of the matcher package | ||
which is used as to match and query data from elastic server""" | ||
from fmatch.matcher import Matcher |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
""" | ||
setup file for fmatch package | ||
""" | ||
from setuptools import setup, find_packages | ||
|
||
|
||
VERSION = '0.0.1' | ||
DESCRIPTION = 'Common package for matching runs with provided metadata' | ||
# pylint: disable= line-too-long | ||
LONG_DESCRIPTION = "A package that allows to match metadata and get runs and create csv files with queried metrics" | ||
|
||
# Setting up | ||
setup( | ||
name="fmatch", | ||
version=VERSION, | ||
author="sboyapal", | ||
author_email="[email protected]", | ||
description=DESCRIPTION, | ||
long_description_content_type="text/x-rst", | ||
long_description=LONG_DESCRIPTION, | ||
packages=find_packages(), | ||
install_requires=['elasticsearch7==7.13.0', 'elasticsearch', 'pyyaml','pandas'], | ||
keywords=['python', 'matching', 'red hat', 'perf-scale', 'matcher', 'orion'], | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
] | ||
) |