Skip to content
Snippets Groups Projects
Select Git revision
  • 86b5bd1dff3b54b17a58ca133a160c0eb79f18f0
  • master default protected
2 results

README

Blame
  • setup.py 1.19 KiB
    import setuptools
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="biobb_common",
        version="4.1.0",
        author="Biobb developers",
        author_email="pau.andrio@bsc.es",
        description="Biobb_common is the base package required to use the biobb packages.",
        long_description=long_description,
        long_description_content_type="text/markdown",
        keywords="Bioinformatics Workflows BioExcel Compatibility",
        url="https://github.com/bioexcel/biobb_common",
        project_urls={
            "Documentation": "http://biobb_common.readthedocs.io/en/latest/",
            "Bioexcel": "https://bioexcel.eu/",
        },
        packages=setuptools.find_packages(exclude=["docs"]),
        install_requires=["pyyaml", "requests", "biopython"],
        python_requires=">=3.8",
        classifiers=[
            "Development Status :: 5 - Production/Stable",
            "Programming Language :: Python :: 3.8",
            "Programming Language :: Python :: 3.9",
            "Programming Language :: Python :: 3.10",
            "License :: OSI Approved :: Apache Software License",
            "Operating System :: MacOS :: MacOS X",
            "Operating System :: POSIX",
            "Operating System :: Unix",
        ],
    )