Skip to content

Commit

Permalink
separate requirements for library
Browse files Browse the repository at this point in the history
  • Loading branch information
ternaus committed Nov 12, 2020
1 parent 0c1ffbf commit 553ae74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion check_orientation/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.2"
__version__ = "0.0.3"
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
albumentations
iglovikov_helper_functions
pytorch_lightning
pytorch_toolbelt
timm
torch
tqdm
Expand Down
4 changes: 4 additions & 0 deletions requirements_lib.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
albumentations
iglovikov_helper_functions
timm
torch
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_version():

# What packages are required for this module to be executed?
try:
with open(os.path.join(current_dir, "requirements.txt"), encoding="utf-8") as f:
with open(os.path.join(current_dir, "requirements_lib.txt"), encoding="utf-8") as f:
required = f.read().split("\n")
except FileNotFoundError:
required = []
Expand Down

0 comments on commit 553ae74

Please sign in to comment.