Skip to content

Commit b1abc44

Browse files
authored
Merge pull request #19 from DefTruth/dev
fix(MANIFEST.in): add MANIFEST.in (#19)
2 parents 36a0b4c + 98fc3db commit b1abc44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+6
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include torchlm/transforms/assets *.jpg

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
def get_long_description():
88
description = (PATH_ROOT / "README.md").read_text(encoding="utf-8")
99
# replace relative repository path to absolute link to the release
10-
static_url = f"https://github.com/DefTruth/torchlm/blob/main/"
11-
description = description.replace("/docs/res/", f"{static_url}/docs/res/")
10+
static_url = f"https://github.com/DefTruth/torchlm/blob/main"
11+
description = description.replace("docs/res/", f"{static_url}/docs/res/")
1212
return description
1313

14+
1415
setuptools.setup(
1516
name="torchlm",
1617
version="0.1.4",
@@ -39,4 +40,5 @@ def get_long_description():
3940
"License :: OSI Approved :: MIT License",
4041
"Operating System :: OS Independent"
4142
],
43+
include_package_data=True
4244
)

torchlm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__version__ = '0.1.4'
33
# Transforms Module: 100+ transforms available, can bind torchvision and
44
# albumentations into torchlm pipeline with autodtype wrapper.
5-
from .transfroms import *
5+
from .transforms import *
66
# Utils Module: some utils methods.
77
from .utils import *
88
# Other Modules: TODO
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)