Skip to content

Commit

Permalink
Bump version, formatting, and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
IshaanDesai committed Sep 5, 2022
1 parent 92fba86 commit 698387d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## latest

## v0.2.0rc1

- Change package from `micro-manager` to `micro-manager-precice`.

## v0.1.0

- First release of Micro Manager prototype. Important features: Micro Manager can run in parallel, capability to handle bi-directional implicit coupling
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@

setup(
name='micro-manager-precice',
version='v0.1.0',
version='v0.2.0rc1',
description='micro-manager-precice is a package which facilitates two-scale macro-micro coupled simulations using preCICE',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/precice/micro-manager',
entry_points={'console_scripts': [
'micro_manager=micro_manager.micro_manager:main']},
entry_points={
'console_scripts': ['micro_manager=micro_manager.micro_manager:main']},
author='Ishaan Desai',
author_email='[email protected]',
license='LGPL-3.0',
packages=find_packages(exclude=['examples']),
install_requires=['pyprecice>=2.3.0', 'numpy>=1.13.3', 'mpi4py'],
packages=find_packages(
exclude=['examples']),
install_requires=[
'pyprecice>=2.3.0',
'numpy>=1.13.3',
'mpi4py'],
test_suite='tests',
zip_safe=False)

0 comments on commit 698387d

Please sign in to comment.