Skip to content

Commit c972913

Browse files
committed
setuptools: silence package discovery warnings
1 parent 3b39796 commit c972913

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ docs: FORCE
8787
clean: check-python3 FORCE
8888
rm -f ${MODULE}/*.pyc tests/*.pyc *.so ${MODULE}/*.so cwltool/cwlprov/*.so
8989
rm -Rf ${MODULE}/__pycache__/
90-
python setup.py clean --all || true
90+
rm -Rf build
9191
rm -Rf .coverage
9292
rm -f diff-cover.html
9393

setup.py

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,29 @@
9595
ext_modules=ext_modules,
9696
# platforms='', # empty as is conveyed by the classifier below
9797
# license='', # empty as is conveyed by the classifier below
98-
packages=["cwltool", "cwltool.tests", "cwltool.cwlprov"],
98+
packages=[
99+
"cwltool",
100+
"cwltool.cwlprov",
101+
"cwltool.jshint",
102+
"cwltool.rdfqueries",
103+
"cwltool.schemas",
104+
"cwltool.tests",
105+
"cwltool.tests.checker_wf",
106+
"cwltool.tests.input_deps",
107+
"cwltool.tests.loop",
108+
"cwltool.tests.override",
109+
"cwltool.tests.reloc",
110+
"cwltool.tests.subgraph",
111+
"cwltool.tests.test_deps_env",
112+
"cwltool.tests.test_deps_env.modulefiles",
113+
"cwltool.tests.tmp1.tmp2.tmp3",
114+
"cwltool.tests.tmp4.alpha",
115+
"cwltool.tests.trs",
116+
"cwltool.tests.wf",
117+
"cwltool.tests.wf.generator",
118+
"cwltool.tests.wf.indir",
119+
"cwltool.tests.wf.operation",
120+
],
99121
package_dir={"cwltool.tests": "tests"},
100122
include_package_data=True,
101123
install_requires=[

0 commit comments

Comments
 (0)