-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
81 lines (74 loc) · 2.46 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
77
78
79
80
81
[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"
[project]
name = "NXRefine"
dynamic = ["version"]
description = "Data reduction for single crystal x-ray scattering"
readme = "README.md"
license = {file = "LICENSE.pdf"}
authors = [{name = "Raymond Osborn", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"x-ray scattering",
"data analysis",
"visualization",
]
requires-python = ">=3.8"
dependencies = [
"nexpy",
"pyfai",
"julia",
"persist-queue",
"sqlalchemy",
"matplotlib",
"psutil",
"scikit-image",
"xtec",
]
[project.urls]
Homepage = "https://nexpy.github.io/nxrefine"
Repository = "https://github.com/nexpy/nxrefine.git"
Issues = "https://github.com/nexpy/nxrefine/issues"
Documentation = "https://nexpy.github.io/nxrefine"
Changelog = "https://github.com/nexpy/nxrefine/releases"
[project.scripts]
nxchoose = "nxrefine.scripts.nxchoose:main"
nxcombine = "nxrefine.scripts.nxcombine:main"
nxcopy = "nxrefine.scripts.nxcopy:main"
nxdatabase = "nxrefine.scripts.nxdatabase:main"
nxfind = "nxrefine.scripts.nxfind:main"
nxlink = "nxrefine.scripts.nxlink:main"
nxload = "nxrefine.scripts.nxload:main"
nxmax = "nxrefine.scripts.nxmax:main"
nxparent = "nxrefine.scripts.nxparent:main"
nxpdf = "nxrefine.scripts.nxpdf:main"
nxprepare = "nxrefine.scripts.nxprepare:main"
nxreduce = "nxrefine.scripts.nxreduce:main"
nxrefine = "nxrefine.scripts.nxrefine:main"
nxserver = "nxrefine.scripts.nxserver:main"
nxsettings = "nxrefine.scripts.nxsettings:main"
nxsum = "nxrefine.scripts.nxsum:main"
nxtransform = "nxrefine.scripts.nxtransform:main"
[project.entry-points."nexpy.plugins"]
experiment = "nxrefine.plugins.experiment:plugin_menu"
refine = "nxrefine.plugins.refine:plugin_menu"
server = "nxrefine.plugins.server:plugin_menu"
[tool.setuptools_scm]
version_file = "src/nxrefine/_version.py"
[tool.setuptools.package-data]
"nxrefine.julia" = ["*.jl"]