Skip to content

Commit 3994a56

Browse files
committed
Further tries with recursive adding for manifest.
1 parent 85d8847 commit 3994a56

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include requirements.txt
2-
include torch_concepts/assets/*
2+
recursive-include torch_concepts/assets *

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@
6060
name=DISTNAME,
6161
maintainer=MAINTAINER,
6262
maintainer_email=MAINTAINER_EMAIL,
63+
author=MAINTAINER,
64+
author_email=MAINTAINER_EMAIL,
6365
description=DESCRIPTION,
6466
license=LICENSE,
6567
url=URL,
@@ -69,7 +71,7 @@
6971
long_description_content_type='text/markdown',
7072
zip_safe=False, # the package can run out of an .egg file
7173
classifiers=CLASSIFIERS,
72-
packages=find_packages(),
74+
packages=find_packages(include=["torch_concepts", "torch_concepts.*"]),
7375
install_requires=INSTALL_REQUIRES,
7476
extras_require=EXTRAS_REQUIRE,
7577
use_scm_version=True, # Adding so that package data is respected

0 commit comments

Comments
 (0)