Skip to content

Commit e5ef2bc

Browse files
committed
include tests data in distribution
1 parent 717c393 commit e5ef2bc

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

MANIFEST.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
include README.rst
2+
include Makefile
3+
include MANIFEST.in
4+
include LICENSE.txt
5+
include *requirements.txt
6+
include testdata/*.cwl
7+
include testdata/*.yaml
8+
include testdata/*.input
9+
global-exclude *~
10+
global-exclude *.pyc

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
license="Apache 2.0",
1414
author="Common workflow language working group",
1515
author_email="[email protected]",
16-
packages=["cwl_utils", "cwl_utils.tests"],
17-
package_dir={"cwl_utils.tests": "tests"},
16+
packages=["cwl_utils", "cwl_utils.tests", "cwl_utils.testdata"],
17+
package_dir={"cwl_utils.tests": "tests", "cwl_utils.testdata": "testdata"},
18+
include_package_data=True,
1819
python_requires=">=3.6",
1920
install_requires=[
2021
"ruamel.yaml<=0.16.5,>=0.12.4",

0 commit comments

Comments
 (0)