-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
75 lines (66 loc) · 1.62 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
67
68
69
70
71
72
73
74
75
[project]
name = "specification_curve"
version = "0.3.7"
description = "Specification_Curve"
readme = "README.md"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.9"
dependencies = [
"matplotlib>=3.9.4",
"numpy>=2.0.2",
"pandas-stubs>=2.2.2.240807",
"pandas>=2.2.3",
"statsmodels>=0.14.4",
"typeguard>=4.4.1",
"types-setuptools>=75.6.0.20241223",
"nbclient>=0.10.2",
"tqdm>=4.67.1",
"pingouin>=0.5.5",
"types-tqdm>=4.67.0.20241221",
"ipywidgets>=8.1.5",
]
[dependency-groups]
dev = [
"coverage>=7.6.9",
"ipykernel>=6.29.5",
"nbstripout>=0.8.1",
"nox>=2024.10.9",
"pandas-stubs>=2.2.2.240807",
"pre-commit-hooks>=5.0.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"quartodoc>=0.9.1",
"ruff>=0.8.4",
"toml>=0.10.2",
"types-setuptools>=75.6.0.20241223",
"xdoctest>=1.2.0",
"aquarel>=0.0.6",
"pydoclint>=0.6.0",
]
[tool.coverage.report]
show_missing = true
fail_under = 98
[tool.coverage.run]
branch = true
source = ["specification_curve"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.setuptools.packages.find]
where = ['src']
exclude = ['.gitignore']
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
specification_curve=['*.csv']
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.pydoclint]
style = 'google'
exclude = ["noxfile.py", "tests/", "docs/"]