forked from DiamondLightSource/fast-feedback-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 858 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ffs"
dynamic = ["version"]
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Nicholas Devenish", email = "[email protected]" },
{ name = "Dimitri Vlachos", email = "[email protected]" },
]
requires-python = ">=3.12"
dependencies = [
"pydantic>2",
"pyepics>=3.5.7",
"requests>=2.32.3",
"rich>=13.9.4",
"watchdir>=1.0.0",
"zocalo>=1.2.0",
]
[tool.setuptools_scm]
[project.entry-points."workflows.services"]
"GPUPerImageAnalysis" = "ffs.service:GPUPerImageAnalysis"
"XRCResultCompare" = "compare_service:XRCResultCompare"
[tool.ruff]
lint.ignore = ["E501", "E741"]
lint.select = ["C9", "E", "F", "W", "I"]
lint.unfixable = ["F841"]
line-length = 88