-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
# requires = ["setuptools>=42", "setuptools-scm", "wheel", "numpy"]
requires = ["setuptools>=69.0", "setuptools-scm>=8.0", "wheel>=0.40", "numpy>=1.24"]
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',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
]
[project.optional-dependencies]
test = ['pytest', 'pytest-cov']
doc = ['sphinx >= 3.0.2', 'numpydoc', 'docutils', 'sphinx-autoapi',
'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 = ["."]