-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.2 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
[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 = "ndevenish@gmail.com" },
{ name = "Dimitri Vlachos", email = "dimitrios.vlachos@diamond.ac.uk" },
{ name = "James Beilsten-Edmands", email = "james.beilsten-edmands@diamond.ac.uk"},
]
requires-python = ">=3.12"
dependencies = [
"pydantic>2",
"pyepics>=3.5.7",
"pygments>=2.20.0",
"requests>=2.33.0",
"rich>=13.9.4",
"watchdir>=1.0.0",
"zocalo>=1.2.0",
]
[project.scripts]
ssx_index = "ffs.ssx_index:run"
[dependency-groups]
dev = [
"pytest",
]
[tool.setuptools_scm]
# pytest.ini
[tool.pytest.ini_options]
testpaths = "tests"
[project.entry-points."workflows.services"]
"GPUPerImageAnalysis" = "ffs.service:GPUPerImageAnalysis"
"XRCResultCompare" = "compare_service:XRCResultCompare"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"ffs" = ["index*.so"]
[tool.ruff]
lint.ignore = ["E501", "E741"]
lint.select = ["C9", "E", "F", "W", "I"]
lint.unfixable = ["F841"]
line-length = 88