Skip to content

Commit

Permalink
pypi release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mayalenE committed Jun 6, 2023
1 parent 1f54b33 commit a0bc350
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions sbmltoodejax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import sbmltoodejax.modulegeneration
import sbmltoodejax.parse

__version__ = "0.2"
__version__ = "0.3.1"

__author__ = "Mayalen Etcheverry"
__email__ = "[email protected]"
__uri__ = "https://github.com/flowersteam/sbmltoodejax"
__url__ = "https://github.com/flowersteam/sbmltoodejax"
__license__ = "MIT"
__copyright__ = "2023, Mayalen Etcheverry"

13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
#! /usr/bin/python3
import setuptools
import sbmltoodejax

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name='sbmltoodejax',
version='0.2',
author='Mayalen Etcheverry',
author_email='[email protected]',
description='python software built upon jax, that allows to convert SBML models into python classes',
version=sbmltoodejax.__version__,
author=sbmltoodejax.__author__,
author_email=sbmltoodejax.__email__,
description='lightweight library that allows to automatically parse and convert SBML models into python models written end-to-end in JAX',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/flowersteam/autodiscjax',
license='MIT',
url=sbmltoodejax.__url__,
license=sbmltoodejax.__license__,
packages=['sbmltoodejax'],
install_requires=['sbmltoodepy', 'jax[cpu]', 'equinox'],
classifiers=[
Expand Down

0 comments on commit a0bc350

Please sign in to comment.