-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=[ | ||
|