Skip to content

Commit 3c5d409

Browse files
committed
Add extra metadata to setup.py
1 parent a6831ed commit 3c5d409

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

cwl_utils/__meta__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.4"

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env python3
22
from setuptools import setup, find_packages
33

4+
exec(open("cwl_utils/__meta__.py").read())
45

56
setup(
67
name='cwl-utils',
7-
version='0.3',
8+
version=__version__,
89
author='Common workflow language working group',
910
author_email='[email protected]',
1011
packages=find_packages(),
@@ -20,4 +21,7 @@
2021
tests_require=['pytest'],
2122
test_suite='tests',
2223
scripts=['cwl_utils/docker_extract.py'],
24+
long_description=open("./README.md").read(),
25+
long_description_content_type="text/markdown",
26+
url='https://github.com/common-workflow-language/cwl-utils',
2327
)

0 commit comments

Comments
 (0)