-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (56 loc) · 1.83 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
[tool.black]
target-version = ['py311', 'py312', 'py313', 'py314']
force-exclude = '''
(
/(
\.git
| data
)/
)
'''
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = 'lis2'
version = "1.0.0"
license = "BSD-3-Clause"
dynamic = ["dependencies"]
requires-python = '>=3.11'
description = "LIS² (Large Image Split Segmentation): A toolbox for large-scale, single-image semantic segmentation"
authors = [
{name = "Loris Berthelot", email = "loris.berthelot@lis-lab.fr"},
{name = "Dominique Benielli", email = "dominique.benielli@univ-amu.fr"},
{name = "François-Xavier Dupé", email = "francois-xavier.dupe@univ-amu.fr" },
{name = "Caroline de Pourtales"},
{name = "Elliot Maitre"},
{name = "Thierry Artières"},
{name = "Annie Zavagno"},
{name = "Julien Rabault"}
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Astronomy"
]
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ['machine learning, supervised learning, classification, ensemble methods, boosting, kernel']
[project.optional-dependencies]
test = ["pytest", "coverage", "pytest-cov"]
doc = ["sphinx==5.0", "numpydoc", "sphinx_gallery", "matplotlib", "sphinx_rtd_theme"]
[project.urls]
"Sources" = "https://github.com/multi-learn/lis2"
Documentation = "https://multi-learn.github.io/lis2/"
"Bug Tracker" = "https://github.com/multi-learn/lis2/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
exclude= ["tests"]