Skip to content

Commit

Permalink
Add dependencies to package
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarupilla committed May 21, 2021
1 parent 965c208 commit f3cfb6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

# get package metadata
md = pkg_utils.get_package_metadata(dirname, name)
md = pkg_utils.get_package_metadata(dirname, name, package_data_filename_patterns=package_data)

# install package
setup(
Expand All @@ -38,6 +38,9 @@
author_email="marupilla@uchc.edu",
license="MIT",
keywords=['HDF5', 'Visualization', 'YAML', 'Fire'],
install_requires=md.install_requires,
extras_require=md.extras_require,
dependency_links=md.dependency_links,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
Expand Down
2 changes: 1 addition & 1 deletion vcell_cli_utils/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.02'
__version__ = '0.6.03'

0 comments on commit f3cfb6c

Please sign in to comment.