-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (59 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend="setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["lzcompression"]
[project]
name = "lzcompression"
version = "0.0.1"
description = "Nonlinear matrix decomposition package"
authors = [
{ name = "Jeff Soules", email = "jsoules@flatironinstitute.org" }
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.24.0",
"scipy>=1.11.1",
"scikit-learn>=1.3.0"
]
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = [
"black >= 23.3.0",
"mypy >= 1.4.1"
]
test = [
"pytest-cov >=4.1.0"
]
[tool.coverage.run]
source = ["src"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report lcov -rs"
[tool.mypy]
python_version = "3.8"
warn_unused_configs = true
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
show_error_codes = true
warn_unused_ignores = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
no_implicit_reexport = true
strict_equality = true
exclude = [
'conftest.py'
]