forked from kubeflow/common
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup.py strikes back #yolo (kubeflow#67)
* Update requirements * Bring setup.py back from tag 1.9.1 * Try and fix "/bin/bash: line 1: .venv/bin/activate: No such file or directory" * Remove former setup.cfg
- Loading branch information
1 parent
d6939c9
commit d99dc49
Showing
7 changed files
with
67 additions
and
56 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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Remove.bg Core Lib""" | ||
|
||
from pkg_resources import parse_requirements | ||
from setuptools import setup | ||
|
||
with open("requirements.in") as requirements_in: | ||
requirements = [line for line in requirements_in if not line.startswith("--")] | ||
|
||
install_requires = [str(requirement) for requirement in parse_requirements(requirements)] | ||
|
||
# See setup.cfg | ||
setup( | ||
setup_requires=["pbr>=2.5", "setuptools>=17.1"], | ||
pbr=True, | ||
install_requires=install_requires, | ||
python_requires=">=3.6", | ||
) |