Skip to content
Snippets Groups Projects
Select Git revision
  • d5dbdb4b8181c42c4124f7c8736c3f3bf256cc23
  • master default
  • object
  • develop protected
  • private_algos
  • cuisine
  • SMOTE
  • revert-76c4cca5
  • archive protected
  • no_graphviz
  • 0.0.2
  • 0.0.1
12 results

pyproject.toml

Blame
  • Dominique Benielli's avatar
    Dominique Benielli authored
    d5dbdb4b
    History
    pyproject.toml 1.64 KiB
    [build-system]
    requires = ["setuptools>=42", "wheel", "numpy"]
    build-backend = "setuptools.build_meta"
    
    [project]
    name = 'summit-multi-learn'
    dynamic = ["version", 'dependencies', "license"]
    requires-python = '>=3.6'
    readme = {file = "README.rst", content-type = "text/x-rst"}
    description = "Supervised MultiModal Integration Tool"
    authors = [
        {name = "Baptiste Bauvin", email = "baptiste.bauvin.work@gmail.com"}
    ]
    keywords = ['machine learning, supervised learning, classification, tool, multiview learning, monoview learning']
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Science/Research',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10',
        'Programming Language :: Python :: 3.11',
        'Topic :: Scientific/Engineering',
        'Topic :: Scientific/Engineering :: Artificial Intelligence',
        'Topic :: Machine Learning',
        'Operating System :: Microsoft :: Windows',
        'Operating System :: POSIX :: Linux',
        'Operating System :: MacOS :: MacOS X',
    ]
    
    
    [project.optional-dependencies]
    test = ['pytest', 'pytest-cov']
    doc = ['sphinx==5.0', 'numpydoc', 'sphinx_gallery', "sphinx_rtd_theme"]
    
    [project.urls]
    "Sources = 'https://github.com/multi-learn/summit'
    Documentation  = 'https://multi-learn.github.io/summit/'
    "Bug Tracker" = '"https://github.com/multi-learn/summit/issues'
    
    [tool.setuptools.dynamic]
    dependencies = {file = ["requirements.txt"]}
    
    [tool.setuptools.packages.find]
    where = ["."]