-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additonal editing of README.md (#1289)
* Update README.md * Cleanup .trivyignore * Additional fix in README.md * Remove unnecessary files * Remove unnecessary files * python:3.9.12 for Dockerfile * long_description * Fix steps names in master-ci.yml
- Loading branch information
Showing
7 changed files
with
17 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +0,0 @@ | ||
# Remove after argo update | ||
CVE-2020-29652 | ||
CVE-2020-14040 | ||
CVE-2020-26160 | ||
CVE-2021-3121 | ||
# Remove after tensorflow update | ||
# Fixed in rsa >= 4.1 | ||
CVE-2020-13757 | ||
# Remove after mlflow update | ||
# Fixed in sqlparse >= 0.4.2 | ||
CVE-2021-32839 | ||
# Remove after tensorflow and update | ||
CVE-2018-20060 | ||
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
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,4 +1,6 @@ | ||
import os | ||
|
||
from pathlib import Path | ||
from setuptools import setup, find_packages | ||
|
||
|
||
|
@@ -31,18 +33,22 @@ def requirements(fp: str): | |
if on_rtd: | ||
install_requires = [req for req in install_requires if "tensorflow" not in req] | ||
|
||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
setup( | ||
author="Equinor ASA", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
description="Train and build models for Argo / Kubernetes", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
entry_points={"console_scripts": ["gordo=gordo.cli:gordo"]}, | ||
install_requires=install_requires, | ||
license="AGPLv3", | ||
|