Skip to content

Commit

Permalink
fix missing package discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
KerstenBreuer committed Apr 7, 2021
1 parent 2a7b1c1 commit 9535a91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cwlab/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

__version__ = "0.4.0"
__version__ = "0.4.1"

import os
from flask import Flask
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='cwlab',
version='0.4.0',
version='0.4.1',
description='A platform-agnostic, cloud-ready framework for simplified deployment of the Common Workflow Language using a graphical web interface',
long_description=open(README).read(),
long_description_content_type="text/x-rst",
Expand All @@ -17,6 +17,7 @@
author_email='[email protected]',
license='Apache 2.0',
include_package_data=True,
packages=find_packages(),
entry_points={
"console_scripts": [
"cwlab=cwlab.__main__:main",
Expand Down

0 comments on commit 9535a91

Please sign in to comment.