-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.25 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "researchstat-ai"
version = "1.1.0"
description = "AI-native statistical analysis and reproducibility platform"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"PyYAML>=6.0",
"pydantic>=2.7",
"numpy>=1.26",
"pandas>=2.2",
"scipy>=1.13",
"statsmodels>=0.14",
"scikit-posthocs>=0.9",
]
[project.optional-dependencies]
figure = [
"matplotlib>=3.8",
"seaborn>=0.13",
"statannotations>=0.6",
"SciencePlots>=2.0",
]
test = [
"pytest>=8",
"hypothesis>=6",
]
mcp = [
"mcp>=1.0",
]
[project.scripts]
researchstat-mcp = "researchstat.mcp.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
addopts = "-q"