-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.39 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
[project]
name = "prepper"
authors = [
{name = "Varchas Gopalaswamy", email = "[email protected]"},
]
description = "Allows python objects to be stored and loaded from an HDF5 file in a language-agnostic manner"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"h5py >= 3.8.0",
"loguru >= 0.6.0",
"aenum >= 3.1.11",
"numpy < 2",
"pandas >= 1.5.1",
"joblib >= 1.2.0",
"typing_extensions >= 4.6.3",
"lazy_loader",
]
dynamic = ["version"]
[project.optional-dependencies]
CI = ["pytest", "pytest-cov","hypothesis","pylint", "xarray", "auto_uncertainties", "periodictable", "arviz", "pint"]
[build-system]
requires = ["setuptools >= 67.0.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "prepper/_version.py"
[tool.setuptools.packages.find]
exclude = ["typings*"]
[tool.pyright]
pythonVersion = "3.11"
pythonPlatform = "Linux"
stubPath = "typings"
typeCheckingMode = "basic"
reportUnusedImport = "none"
reportUnusedClass = "none"
reportUnusedFunction = "none"
reportUnusedVariable = "none"
reportDuplicateImport = "none"
reportPrivateImportUsage = "none"
reportUntypedFunctionDecorator = true
reportUntypedClassDecorator = true
reportMissingImports = false
exclude = ["install*", "public*", "**/tests*", "**/resources*"]