forked from ayrna/dlordinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.47 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "dlordinal"
version = "2.2.1"
authors = [
{name = "Francisco Bérchez-Moreno", email = "[email protected]"},
{name = "Víctor Manuel Vargas", email = "[email protected]"},
{name = "Javier Barbero-Gómez", email = "[email protected]"},
{name = "Rafael Ayllón-Gavilán", email = "[email protected]"},
{name = "David Guijo-Rubio", email = "[email protected]"}
]
description = "Deep learning for ordinal classification"
readme = "README.md"
requires-python = ">=3.8,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"scikit-learn==1.*",
"numpy>=1.21,==1.*",
"torch==2.*",
"torchvision>=0.13",
"pandas>=1",
"scipy>=1.7",
"scikit-image>=0.18",
"tqdm>=4",
"Pillow>=8",
]
[project.urls]
Source = "https://github.com/ayrna/dlordinal"
Documentation = "https://dlordinal.readthedocs.io/en/latest/"
[project.optional-dependencies]
dev = ["pytest", "pre-commit"]
docs = ["sphinx", "sphinxcontrib-bibtex", "sphinx-rtd-theme"]
[tool.setuptools.packages.find]
include = ["dlordinal", "dlordinal.*"]
exclude = ["*.tests"]
namespaces = false
[tool.ruff]
fix = true
[tool.black]
line-length = 88
target-version = ['py38']
experimental-string-processing = true