Skip to content

Commit

Permalink
setuptools: silence package discovery warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Mar 8, 2024
1 parent 442ac81 commit 2ca5c3d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ docs: FORCE
clean: check-python3 FORCE
rm -f ${MODULE}/*.pyc tests/*.pyc *.so ${MODULE}/*.so cwltool/cwlprov/*.so
rm -Rf ${MODULE}/__pycache__/
python setup.py clean --all || true
rm -Rf build
rm -Rf .coverage
rm -f diff-cover.html

Expand Down
24 changes: 23 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,29 @@
ext_modules=ext_modules,
# platforms='', # empty as is conveyed by the classifier below
# license='', # empty as is conveyed by the classifier below
packages=["cwltool", "cwltool.tests", "cwltool.cwlprov"],
packages=[
"cwltool",
"cwltool.cwlprov",
"cwltool.jshint",
"cwltool.rdfqueries",
"cwltool.schemas",
"cwltool.tests",
"cwltool.tests.checker_wf",
"cwltool.tests.input_deps",
"cwltool.tests.loop",
"cwltool.tests.override",
"cwltool.tests.reloc",
"cwltool.tests.subgraph",
"cwltool.tests.test_deps_env",
"cwltool.tests.test_deps_env.modulefiles",
"cwltool.tests.tmp1.tmp2.tmp3",
"cwltool.tests.tmp4.alpha",
"cwltool.tests.trs",
"cwltool.tests.wf",
"cwltool.tests.wf.generator",
"cwltool.tests.wf.indir",
"cwltool.tests.wf.operation",
],
package_dir={"cwltool.tests": "tests"},
include_package_data=True,
install_requires=[
Expand Down

0 comments on commit 2ca5c3d

Please sign in to comment.