Skip to content
Snippets Groups Projects
Select Git revision
  • 0208d06ad8ed40c239bc5f1cd7e947130fab5e0e
  • master default protected
  • github/fork/hrani/master
  • github/fork/dilawar/master
  • chamcham
  • chhennapoda
  • wheel
  • 3.2.0-pre0
  • v3.1.3
  • 3.1.2
  • 3.1.1
  • chamcham-3.1.1
  • 3.1.0
  • ghevar_3.0.2_pre2
  • ghevar_3.0.2
15 results

Doxyfile

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",
        ],
    )