Skip to content

Commit d32ab29

Browse files
committed
add resources files in dist package
1 parent 294b815 commit d32ab29

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include ipython2cwl/templates/*

ipython2cwl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1"
1+
__version__ = "0.0.1"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def get_version(rel_path):
2929
version=get_version(f"{name}/__init__.py"),
3030
packages=['ipython2cwl'],
3131
package_dir={'ipython2cwl': 'ipython2cwl'},
32-
package_data={'ipython2cwl': ['ipython2cwl/templates/*']},
32+
package_data={'': ['ipython2cwl/templates/*']},
33+
include_package_data=True,
3334
author='Yannis Doukas',
3435
author_email='[email protected]',
3536
description='Convert IPython Jupyter Notebooks to CWL tool',
@@ -63,4 +64,5 @@ def get_version(rel_path):
6364
'ipython>=7.15.0'
6465
],
6566
test_suite='tests',
67+
url='https://ipython2cwl.readthedocs.io/'
6668
)

0 commit comments

Comments
 (0)