Skip to content

Commit

Permalink
version and setup.py update
Browse files Browse the repository at this point in the history
  • Loading branch information
djbajic committed Aug 20, 2020
1 parent 0aff96b commit f42ce67
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions cometspy/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ def set_param(self, name, value):
else:
print('Parameter ' + name + ' does not exist')

def get_param(self, name):
if name in self.all_params:
return self.all_params[name]
else:
print('Parameter ' + name + ' does not exist')

def __init__(self, global_params=None, package_params=None):
self.all_params = {'writeSpecificMediaLog': False,
'specificMediaLogRate': 1,
Expand Down
Binary file added dist/cometspy-0.3.11.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
setup(
name='cometspy',
packages=['cometspy'],
version='0.3.11',
version='0.4.0',
license='GPL',
description='The Python interface to COMETS',
author='The COMETSPy Core Team',
author_email='[email protected]',
url='https://github.com/segrelab/cometspy',
download_url='https://github.com/segrelab/cometspy/archive/v0.3.11.tar.gz', # New releases here!!
download_url='https://github.com/segrelab/cometspy/archive/v0.4.0.tar.gz', # New releases here!!
keywords=['metabolism', 'dynamic', 'flux', 'balance', 'analysis', 'spatial', 'evolution'],
install_requires=[
# I get to this in a second
Expand Down

0 comments on commit f42ce67

Please sign in to comment.