-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
176 lines (154 loc) · 5.46 KB
/
pyproject.toml
File metadata and controls
176 lines (154 loc) · 5.46 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "smartem-decisions"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
]
description = "A proof of concept for a decision engine to automate CryoEM workflows for structural biology"
dependencies = [] # Note: this section is empty by design, use `pip install -e .[all]`
dynamic = ["version"]
license.file = "LICENSE"
readme = "README_PYPI.md"
requires-python = ">=3.12"
[project.optional-dependencies]
# Development dependencies
dev = [
"detect-secrets",
"pipdeptree",
"pre-commit",
"pyright",
"pytest",
"pytest-asyncio>=0.23.0,<2.0.0",
"pytest-cov",
"ruff",
"types-mock",
"types-requests",
"types-pyyaml",
]
# Core shared dependencies (schemas, utils, enums)
common = [
"pydantic>=2.11.7,<3.0.0",
]
# API client dependencies (now part of backend)
client = [
"smartem-decisions[common]",
"httpx>=0.27.0,<1.0.0",
"requests>=2.32.0,<3.0.0",
"sseclient-py>=1.8.0,<2.0.0",
"fastapi>=0.116.1,<1.0.0",
"uvicorn[standard]>=0.30.0,<1.0.0",
"sqlalchemy>=2.0.0,<3.0.0",
"psycopg2-binary>=2.9.10,<3.0.0",
"sqlmodel>=0.0.24,<1.0.0",
"alembic>=1.13.0,<2.0.0",
"numpy>=2.0.0,<2.5.0",
"scipy>=1.0.0,<1.18.0",
]
# CLI and general utilities
cli = [
"python-dotenv==1.2.2",
"pyyaml",
"rich",
"typer==0.24.1",
]
# Backend system component dependencies (database, messaging, API server/client)
backend = [
"smartem-decisions[common,client,cli]",
"aio-pika>=9.4.0,<10.0.0",
"fastapi>=0.116.1,<1.0.0",
"uvicorn[standard]>=0.30.0,<1.0.0",
"sqlalchemy>=2.0.0,<3.0.0",
"asyncpg>=0.30.0,<1.0.0",
"psycopg2-binary>=2.9.10,<3.0.0",
"sqlmodel>=0.0.24,<1.0.0",
"alembic>=1.13.0,<2.0.0",
"sse-starlette>=2.1.0,<4.0.0",
]
# Packages for cryoEM file I/O; used for image displays from API
images = [
"pillow",
"mrcfile",
"tifffile",
]
# Agent component dependencies
agent = [
"smartem-decisions[common,client,cli]",
"lxml>=5.0.0,<7.0.0",
"watchdog>=4.0.0,<7.0.0",
]
# Combined dependencies (for convenience)
all = [
"smartem-decisions[dev,common,client,cli,backend,agent,images]",
]
[project.scripts]
# Agent CLI
smartem-agent = "smartem_agent.__main__:epu_data_intake_cli"
"smartem.agent-cleanup" = "smartem_backend.agent_data_cleanup:main"
# ML model and prediction management
"smartem.register-prediction-model" = "smartem_backend.cli.register_quality_prediction_model:run"
"smartem.init-model-weight" = "smartem_backend.cli.initialise_prediction_model_weights:run"
"smartem.random-model-predictions" = "smartem_backend.cli.random_model_predictions:run"
"smartem.random-prior-updates" = "smartem_backend.cli.random_prior_updates:run"
[project.urls]
GitHub = "https://github.com/DiamondLightSource/smartem-decisions"
[[project.authors]] # Further authors may be added by duplicating this section
email = "daniel.hatton@diamond.ac.uk"
name = "Daniel Hatton"
[[project.authors]] # Further authors may be added by duplicating this section
email = "val.redchenko@diamond.ac.uk"
name = "Val Redchenko"
[tool.setuptools]
packages = [
"smartem_backend",
"smartem_agent",
"smartem_common",
]
package-dir = {"" = "src"}
[tool.setuptools_scm]
version_file = "src/_version.py"
[tool.pyright]
typeCheckingMode = "standard"
reportMissingImports = false # Ignore missing stubs in imported modules
[tool.pytest.ini_options]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
addopts = """
--tb=native -vv --doctest-modules
"""
asyncio_mode = "auto"
# https://iscinumpy.gitlab.io/post/bound-version-constraints/#watch-for-warnings
filterwarnings = ["error"]
# Collect tests (and any doctests in those files) from tests/.
# src/ is excluded from collection because pytest's doctest-modules import
# would double-register SQLModel classes — the modules get loaded once via
# test imports (as smartem_backend.*) and once via pytest's file-based collection,
# tripping SQLAlchemy's "Multiple classes found" resolver on string relationships.
# There are no doctests in src today; if that changes, revisit src-layout setup.
testpaths = "tests"
# Exclude Alembic migration files from pytest collection (they're not meant to be imported directly)
norecursedirs = "src/smartem_backend/migrations"
[tool.coverage.run]
data_file = "/tmp/core.coverage"
[tool.coverage.paths]
# Tests are run from installed location, map back to the src directory
source = ["src", "**/site-packages/"]
[tool.ruff]
src = ["src", "tests"]
line-length = 120
lint.select = [
"B", # flake8-bugbear - https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
"C4", # flake8-comprehensions - https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
"E", # pycodestyle errors - https://docs.astral.sh/ruff/rules/#error-e
"F", # pyflakes rules - https://docs.astral.sh/ruff/rules/#pyflakes-f
"W", # pycodestyle warnings - https://docs.astral.sh/ruff/rules/#warning-w
"I", # isort - https://docs.astral.sh/ruff/rules/#isort-i
"UP", # pyupgrade - https://docs.astral.sh/ruff/rules/#pyupgrade-up
"SLF", # self - https://docs.astral.sh/ruff/settings/#lintflake8-self
]
[tool.ruff.lint.per-file-ignores]
# By default, private member access is allowed in tests
# Remove this line to forbid private member access in tests
"tests/**/*" = ["SLF001"]