-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update setup.py to reflect current Maintainers and Authors and update…
…d project urls (#529) Signed-off-by: Ian Hoang <[email protected]> Co-authored-by: Ian Hoang <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -135,12 +135,19 @@ def str_from_file(name): | |
first_unsupported_version = "{}.{}".format(supported_python_versions[-1][0], supported_python_versions[-1][1] + 1) | ||
|
||
setup(name="opensearch-benchmark", | ||
maintainer="Ian Hoang, Govind Kamat", | ||
maintainer_email="[email protected], [email protected]", | ||
author="Ian Hoang, Govind Kamat, Mingyang Shi, Chinmay Gadgil, Rishabh Singh", | ||
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]", | ||
maintainer="Ian Hoang, Govind Kamat, Mingyang Shi, Chinmay Gadgil, Rishabh Singh", | ||
maintainer_email="[email protected], [email protected], [email protected], [email protected], [email protected]", | ||
version=__versionstr__, | ||
description="Macrobenchmarking framework for OpenSearch", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
project_urls={ | ||
"Documentation": "https://opensearch.org/docs/benchmark", | ||
"Source Code": "https://github.com/opensearch-project/OpenSearch-Benchmark", | ||
"Issue Tracker": "https://github.com/opensearch-project/OpenSearch-Benchmark/issues", | ||
}, | ||
url="https://github.com/opensearch-project/OpenSearch-Benchmark", | ||
license="Apache License, Version 2.0", | ||
packages=find_packages( | ||
|