Skip to content
Snippets Groups Projects
Select Git revision
  • 0549d2eb66cf4badbdfcb3e57311229a1f60b94e
  • master default protected
  • tut_ring_allen
  • docs_furo
  • docs_reorder_cable_cell
  • docs_graphviz
  • docs_rtd_dev
  • ebrains_mirror
  • doc_recat
  • docs_spike_source
  • docs_sim_sample_clar
  • docs_pip_warn
  • github_template_updates
  • docs_fix_link
  • cv_default_and_doc_clarification
  • docs_add_numpy_req
  • readme_zenodo_05
  • install_python_fix
  • install_require_numpy
  • typofix_propetries
  • docs_recipe_lookup
  • v0.10.0
  • v0.10.1
  • v0.10.0-rc5
  • v0.10.0-rc4
  • v0.10.0-rc3
  • v0.10.0-rc2
  • v0.10.0-rc
  • v0.9.0
  • v0.9.0-rc
  • v0.8.1
  • v0.8
  • v0.8-rc
  • v0.7
  • v0.6
  • v0.5.2
  • v0.5.1
  • v0.5
  • v0.4
  • v0.3
  • v0.2.2
41 results

perfvisitor.hpp

Blame
  • setup.py NaN GiB
    import setuptools
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="biobb_common",
        version="0.1.2",
        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>=1.72'],
        python_requires='>=3',
        classifiers=(
            "Development Status :: 3 - Alpha",
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: Apache Software License",
            "Operating System :: MacOS :: MacOS X",
            "Operating System :: POSIX",
        ),
    )