forked from snad-space/coniferest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (55 loc) · 1.17 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
[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",
]
[project.urls]
"Source Code" = "https://github.com/snad-space/coniferest"
[tool.setuptools.packages.find]
exclude = [
"tests",
"notebooks",
"notes",
]
# pytest
[tool.pytest.ini_options]
testpaths = [
"tests",
]
markers = [
"e2e",
"long",
"regression",
]
addopts = "-m 'not long'"