forked from snad-space/coniferest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (72 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
"setuptools",
"wheel",
"oldest-supported-numpy",
"Cython",
]
build-backend = "setuptools.build_meta"
[project]
name = "coniferest"
version = "0.0.10"
description = "Coniferous forests for better machine learning"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Vladimir Korolev", email = "balodja@gmail.com" },
{ name = "SNAD team" },
]
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dependencies = [
"click",
# We need it for cpu_count() only, but we have it anyway as a dependency of scikit-learn
"joblib",
"numpy",
"scikit-learn>=1,<2",
"matplotlib",
"onnxconverter-common",
]
[project.optional-dependencies]
dev = [
"pytest",
"onnxruntime",
# sciki-learn 1.3 changed pickle format, so we need it for consistency of regression test data
"scikit-learn>=1.3",
]
[project.urls]
"Source Code" = "https://github.com/snad-space/coniferest"
[tool.setuptools.packages.find]
exclude = [
"tests",
"notebooks",
"notes",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
markers = [
"e2e",
"long",
"regression",
]
addopts = "-m 'not long'"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38,py39,py310,py311
isolated_build = True
[testenv]
extras = dev
commands =
pytest
"""