https://github.com/yaml2sbml-dev/yaml2sbml
Revision 6e5e9a203e2884fcc25846fd95320d666a0e2cd0 authored by Jakob Vanhoefer on 27 October 2020, 18:28:21 UTC, committed by Jakob Vanhoefer on 27 October 2020, 18:28:21 UTC
1 parent cae3e6d
Raw File
Tip revision: 6e5e9a203e2884fcc25846fd95320d666a0e2cd0 authored by Jakob Vanhoefer on 27 October 2020, 18:28:21 UTC
forgot to add the tests
Tip revision: 6e5e9a2
setup.py
import setuptools

ENTRY_POINTS = {
    'console_scripts': [
        'yaml2sbml = yaml2sbml.yaml2sbml:main',
        'yaml2petab = yaml2sbml.yaml2PEtab: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"],
    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