-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 2.75 KB
/
pyproject.toml
File metadata and controls
98 lines (88 loc) · 2.75 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
[project]
name = "qp-prob"
requires-python = ">=3.10"
license = { file = "LICENSE" }
readme = "README.md"
authors = [
{ name = "LSST Dark Energy Science Collaboration (DESC)", email = "later@later.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dynamic = ["version"]
dependencies = [
"numpy>=2.0",
"scipy>=1.13",
"tables-io>=1.1.0",
"deprecated"
]
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
full = ["tables-io[full]", "matplotlib","pytdigest","scikit-learn>=1.0"] # enables full code capability, including writing to all file formats and plottting
dev = [
"tables-io[full]",
"matplotlib",
"scikit-learn>=1.0",
"pytest",
"pytest-cov", # Used to report total code coverage
"pre-commit", # Used to run checks before finalizing a git commit
"pylint", # Used for static linting of files
"packaging",
"pillow",
"cycler",
"pytdigest",
"python-dateutil",
"kiwisolver",
"joblib",
"threadpoolctl",
"pylint",
"mpi4py",
"coverage",
"ipyparallel",
]
docs = [
"nbsphinx",
"sphinx>6.3.1", # Used to automatically generate documentation
"sphinx_rtd_theme", # Used to render documentation
"sphinx-autoapi", # Used to automatically generate api documentation
"sphinx_design",
"myst-nb", # used to render notebooks in markdown
"myst-parser>=4", # used to write documentation in markdown
"sphinx-copybutton",
"numpydoc", # alternative to sphinx napoleon
]
[build-system]
requires = [
"wheel",
"setuptools>=62", # Used to build and package the Python project
"setuptools_scm>=6.2", # Gets release version from git. Makes it available programmatically
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/qp/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--cov=qp", "--cov-report=html"]
[tool.pylint]
disable = [
"abstract-method",
"invalid-name",
"too-many-statements",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-few-public-methods",
"duplicate-code",
"use-dict-literal",
"broad-exception-caught",
"consider-using-f-string",
]
max-line-length = 110
max-locals = 50
max-branches = 25
max-public-methods = 50