-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.32 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "fast_dp"
version = "1.6.2"
authors = [
{ name = "Diamond Light Source", email = "scientificsoftware@diamond.ac.uk" },
]
description = "Fast DP: Fast Data Processsing with XDS"
readme = "README.rst"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
[project.urls]
Homepage = "https://github.com/DiamondLightSource/fast_dp"
Downloads = "https://github.com/DiamondLightSource/fast_dp/releases"
[project.entry-points."libtbx.dispatcher.script"]
fast_dp = "fast_dp"
fast_rdp = "fast_rdp"
[project.entry-points."libtbx.precommit"]
fast_dp = "fast_dp"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project.scripts]
fast_dp = "fast_dp.fast_dp:main"
fast_rdp = "fast_dp.fast_rdp:main"
[tool.setuptools]
packages = ["fast_dp"]
[tool.ruff]
line-length = 88
select = ["UP010", "I002", "F401", "I", "E", "F", "W"]
ignore = ["E741"]
# Automatically fixing this can be surprising for some
unfixable = ["F401", "F841"]
flake8-pytest-style.fixture-parentheses = false
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]