├── .gitattributes ├── .github └── workflows │ ├── checkout-submodules.sh │ ├── experimental_wheels.yml │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── .graphics └── Official-sbml-supported-70.jpg ├── .travis.yml ├── LICENSE.html ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── appveyor.yml ├── appveyor ├── deploy_to_pypi.ps1 ├── install.ps1 └── run_with_env.cmd ├── config.sh ├── deploy └── deploy.sh ├── libsbml └── .gitignore ├── setup.cfg ├── setup.py └── test_libsbml.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/checkout-submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.github/workflows/checkout-submodules.sh -------------------------------------------------------------------------------- /.github/workflows/experimental_wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.github/workflows/experimental_wheels.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.gitmodules -------------------------------------------------------------------------------- /.graphics/Official-sbml-supported-70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.graphics/Official-sbml-supported-70.jpg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/LICENSE.html -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor/deploy_to_pypi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/appveyor/deploy_to_pypi.ps1 -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /appveyor/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/appveyor/run_with_env.cmd -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/config.sh -------------------------------------------------------------------------------- /deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/deploy/deploy.sh -------------------------------------------------------------------------------- /libsbml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/libsbml/.gitignore -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/setup.py -------------------------------------------------------------------------------- /test_libsbml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbmlteam/python-libsbml/HEAD/test_libsbml.py --------------------------------------------------------------------------------