https://github.com/yaml2sbml-dev/yaml2sbml
Revision f1272c522759d53431f391c45fc98de2e51a49dd authored by dilpath on 29 January 2021, 16:30:18 UTC, committed by dilpath on 29 January 2021, 16:30:18 UTC
1 parent c6a943c
Raw File
Tip revision: f1272c522759d53431f391c45fc98de2e51a49dd authored by dilpath on 29 January 2021, 16:30:18 UTC
codacy
Tip revision: f1272c5
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"],
    tests_require=["amici>=0.11.10",
                   "pypesto>=0.2.2"
                   "numpy>=1.19.4",
                   "matplotlib>=3.1.0",
                   "flake8>=3.7.2",
                   "nbmake>=0.1.0",
                   "scipy>=1.6.0"],
    extras_require={'examples': ["amici>=0.11.10",
                                 "numpy>=1.19.4",
                                 "matplotlib>=3.1.0",
                                 "scipy>=1.6.0"]},
    python_requires='>=3.6',
    classifiers=[
        "Programming Language :: Python :: 3.6+",
        "License :: OSI Approved :: MIT License",
        "Operating System :: Unix",
    ],
    entry_points=ENTRY_POINTS,
    include_package_data=True
)
back to top