-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.1 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pre-check-research"
version = "1.2.0"
description = "Pre-submission research data audit toolkit for reproducibility checks, statistical consistency screening, and research integrity workflows."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "pre-check-research contributors"}
]
keywords = [
"research",
"research-integrity",
"reproducibility",
"open-science",
"data-audit",
"data-quality",
"statistics",
"statistical-consistency",
"forensic-statistics",
"manuscript-screening",
"pre-submission",
"statcheck",
"grim",
"sprite",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.24",
"openpyxl>=3.1",
"pandas>=2.0",
"pdfplumber>=0.11",
"scipy>=1.10",
]
[project.optional-dependencies]
image = [
"Pillow>=10.0",
"opencv-python-headless>=4.8",
"scikit-image>=0.22",
]
dev = [
"mypy>=1.8",
"pandas-stubs",
"pytest>=8.0",
"ruff>=0.4",
]
[project.scripts]
pcr-extract = "pcr_audit.cli:extract_main"
pcr-raw-audit = "pcr_audit.cli:raw_audit_main"
pcr-report = "pcr_audit.cli:report_main"
pcr-audit = "pcr_audit.cli:audit_main"
pcr-crosscheck = "pcr_audit.cli:crosscheck_main"
[project.urls]
Homepage = "https://github.com/nufegia/pre-check-research"
Repository = "https://github.com/nufegia/pre-check-research"
Issues = "https://github.com/nufegia/pre-check-research/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff.lint.per-file-ignores]
"src/pcr_audit/product_detectors.py" = ["F401"]
[tool.mypy]
[[tool.mypy.overrides]]
module = ["scipy", "scipy.*"]
ignore_missing_imports = true