-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (112 loc) · 3.45 KB
/
pyproject.toml
File metadata and controls
129 lines (112 loc) · 3.45 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools ~= 65.0.0", "versioningit ~= 2.2.0", "wheel"]
[project]
name = "adaptive"
dynamic = ["version"]
description = "Parallel active learning of mathematical functions"
maintainers = [{ name = "Adaptive authors" }]
license = { text = "BSD" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"scipy",
"sortedcollections >= 1.1",
"sortedcontainers >= 2.0",
"cloudpickle",
"loky >= 2.9",
"typing_extensions; python_version < '3.10'",
"versioningit",
]
[project.optional-dependencies]
other = [
"dill",
"distributed",
"ipyparallel>=6.2.5", # because of https://github.com/ipython/ipyparallel/issues/404
"scikit-optimize>=0.8.1", # because of https://github.com/scikit-optimize/scikit-optimize/issues/931
"scikit-learn",
"wexpect; os_name == 'nt'",
"pexpect; os_name != 'nt'",
]
notebook = [
"ipython",
"ipykernel>=4.8.0", # because https://github.com/ipython/ipykernel/issues/274 and https://github.com/ipython/ipykernel/issues/263
"jupyter_client>=5.2.2", # because https://github.com/jupyter/jupyter_client/pull/314
"holoviews>=1.9.1",
"ipywidgets",
"bokeh",
"pandas",
"matplotlib",
"plotly",
]
testing = [
"flaky",
"pytest",
"pytest-cov",
"pytest-randomly",
"pytest-timeout",
"pre_commit",
"typeguard>=4.0.0",
]
[project.urls]
homepage = "https://adaptive.readthedocs.io/"
documentation = "https://adaptive.readthedocs.io/"
repository = "https://github.com/python-adaptive/adaptive"
[project.readme]
content-type = "text/markdown"
file = "README.md"
[tool.setuptools.packages.find]
include = ["adaptive.*", "adaptive"]
[tool.pytest.ini_options]
testpaths = ["adaptive"]
addopts = "--durations=5 --cov --cov-append --cov-fail-under=70 -vvv --cov-report="
norecursedirs = ["docs"]
[tool.coverage.paths]
source = ["adaptive", ".nox/py*/lib/python*/site-packages"]
[tool.coverage.run]
branch = true
parallel = true
source = ["adaptive"]
[tool.coverage.report]
show_missing = true
precision = 2
[tool.coverage.xml]
output = ".coverage.xml"
[tool.mypy]
ignore_missing_imports = true
python_version = "3.9"
[tool.ruff]
line-length = 150
target-version = "py39"
select = ["B", "C", "E", "F", "W", "T", "B9", "I", "UP"]
ignore = [
"T20", # flake8-print
"ANN101", # Missing type annotation for {name} in method
"S101", # Use of assert detected
"PD901", # df is a bad variable name. Be kinder to your future self.
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in {name}
"D402", # First line should not be the function's signature
"PLW0603", # Using the global statement to update `X` is discouraged
"D401", # First line of docstring should be in imperative mood
]
[tool.ruff.per-file-ignores]
"tests/*" = ["SLF001"]
"ci/*" = ["INP001"]
"tests/test_examples.py" = ["E501"]
[tool.ruff.mccabe]
max-complexity = 18
[tool.versioningit]
[tool.versioningit.vcs]
method = "git"
match = ["v*"]
default-tag = "0.0.0"
[tool.versioningit.onbuild]
build-file = "adaptive/_version.py"
source-file = "adaptive/_version.py"