https://github.com/yaml2sbml-dev/yaml2sbml
Revision b2a64069f223caaf89f13fb1ae7d644de299870f authored by yannikschaelte on 15 January 2021, 17:04:57 UTC, committed by yannikschaelte on 15 January 2021, 17:04:57 UTC
1 parent 0e55623
Raw File
Tip revision: b2a64069f223caaf89f13fb1ae7d644de299870f authored by yannikschaelte on 15 January 2021, 17:04:57 UTC
make executable
Tip revision: b2a6406
setup.py
import setuptools

ENTRY_POINTS = {
    'console_scripts': [
        'yaml2sbml = yaml2sbml.yaml2sbml:main',
        'yaml2petab = yaml2sbml.yaml2PEtab:main',
        'yaml2sbml_validate = yaml2sbml.yaml_validation:main'
    ]
}

setuptools.setup(
    name="yaml2sbml",
    version="0.1.1",
    author="Jakob Vanhoefer, Marta R. A. Matos",
    author_email="marta.ra.matos@gmail.com",
    description="A small package to convert ODEs specified in a yaml file to SBML/PEtab.",
    url="https://github.com/martamatos/yaml2sbml",
    packages=setuptools.find_packages(),
    install_requires=["python-libsbml>=5.18.0",
                      "PyYAML>=5.1",
                      "pandas>=1.0.1",
                      "petab>=0.1.4"],
    extras_require={'examples': ["amici>=0.11.10",
                                 "numpy>=1.19.4",
                                 "matplotlib>=3.1.0"]},
    python_requires='>=3.6',
    classifiers=[
        "Programming Language :: Python :: 3.6+",
        "License :: OSI Approved :: MIT License",
        "Operating System :: Unix",
    ],
    entry_points=ENTRY_POINTS
)
back to top