-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.39 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scidk"
version = "0.0.1"
description = "SciDK - Science Data Kit (MVP)"
authors = [{name = "SciDK Team"}]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"Flask>=3.0",
"ijson>=3.2",
"openpyxl>=3.1",
"PyYAML>=6.0",
"neo4j>=5.14",
"psutil>=5.9",
"python-dateutil>=2.8",
"cryptography>=41.0",
"jsonpath-ng>=1.6",
"pandas>=2.0",
"rapidfuzz>=3.0",
"bcrypt>=4.0",
"APScheduler>=3.10",
"flasgger>=0.9.7",
]
[project.optional-dependencies]
# Dev/test dependencies used locally and in CI
dev = [
"pytest>=7.4",
"pytest-playwright==0.4.3",
"playwright==1.40.0",
"requests>=2.32",
"beautifulsoup4>=4.12",
"coverage>=7.4",
]
# Optional LLM provider (only needed if you enable Graphrag LLM features)
llm = [
"ollama>=0.3",
]
[project.scripts]
scidk-serve = "scidk.app:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["scidk*"]
exclude = ["dev*", "data*", "singularity*", "scripts*", "neo4j*", "tests*", "*.dist-info*", "*.egg-info*"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
addopts = "-ra"
markers = [
"unit: fast, pure unit tests",
"integration: tests that touch DB/files/HTTP without browser",
"e2e: end-to-end Playwright/browser tests",
"slow: slow tests",
"smoke: short, high-signal tests",
]