-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (70 loc) · 1.95 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
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[project]
authors = [
{name = "Diamond Light Source — Data Analysis", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"dask[array,dataframe,diagnostics,distributed]!=2021.3.*",
"h5py>=3.8",
"hdf5plugin>=4.0.1",
"netcdf4",
"nexgen>=0.9.3",
"numpy",
"pandas",
"pint",
"sparse",
"xarray",
"zarr"
]
description = "Tools for processing event-mode X-ray data"
keywords = ["x-ray", "tristan", "timepix"]
license = {file = "LICENCE"}
name = "tristan"
readme = "README.md"
requires-python = ">=3.10"
version = "0.4.2"
[project.optional-dependencies]
dev = [
"black",
"pytest-cov",
"pytest-random-order",
"pre-commit",
"build"
]
[project.scripts]
apply-flat-field = "tristan.command_line.apply_flat_field:main"
check-tristan-files = "tristan.diagnostics.check_files:cli"
cues = "tristan.command_line.cues:main"
find-trigger-intervals = "tristan.diagnostics.find_trigger_intervals:cli"
images = "tristan.command_line.images.top_level_cli:main"
valid-events = "tristan.diagnostics.check_valid_events:cli"
[project.urls]
Bug-Tracker = "https://github.com/DiamondLightSource/python-tristan/issues"
Documentation = "https://tristan.readthedocs.io/"
GitHub = "https://github.com/DiamondLightSource/python-tristan"
[tool.ruff.lint]
ignore = ["E501", "E741"]
select = ["C4", "E", "F", "W", "I"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
section-order = [
"future",
"standard-library",
"netcdf4",
"third-party",
"first-party",
"local-folder"
]
sections = {netcdf4 = ["netCDF4"]}