Skip to content

Commit 553ae74

Browse files
committed
separate requirements for library
1 parent 0c1ffbf commit 553ae74

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

check_orientation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
albumentations
22
iglovikov_helper_functions
33
pytorch_lightning
4-
pytorch_toolbelt
54
timm
65
torch
76
tqdm

requirements_lib.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
albumentations
2+
iglovikov_helper_functions
3+
timm
4+
torch

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_version():
2424

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

0 commit comments

Comments
 (0)