-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (66 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [
"setuptools>=61",
"wheel",
"numpy>=1.24.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "mage-multi-learn"
dynamic = ["version"]
description = "MAGE : Multi-view Artificial Generation Engine, a non-naïve multiview dataset generator"
readme = "README.rst"
license = "BSD-3-Clause"
authors = [
{ name = "Dominique Benielli" },
{ name = "Sokol Koço" },
{ name = "Baptiste Bauvin" },
{ name = "Cécile Capponi" }
]
requires-python = ">=3.7"
keywords = ["machine learning", "supervised learning", "classification", "data generation", "multi-view", "multi-modal", "multi-class"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"scikit-learn>=0.19",
"numpy>=1.24.0",
"scipy>=1.3.0",
"plotly",
"h5py",
"pyyaml",
"tabulate",
"pandas",
"summit-multi-learn==0.0.2",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
doc = [
"sphinx>=1.8",
"numpydoc",
"sphinx_gallery",
"matplotlib",
"jupyter",
"pandoc",
"nbsphinx",
"nbsphinx_link",
"sphinx_rtd_theme",
"sphinx-autoapi",
"summit-multi-learn"
]
[project.urls]
Documentation = "https://multi-learn.github.io/mage/"
Source = "https://github.com/multi-learn/mage"
Tracker = "https://github.com/multi-learn/mage/issues"
[tool.setuptools.packages.find]
include = ["multiview_generator"]
exclude = ["demo", "docker", "tests"]
[tool.setuptools]
include-package-data = true
[tool.sphinx]
builder = "html"
source-dir = "docs"
build-dir = "docs/build"