-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (56 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
67 lines (56 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "orange-spectroscopy-prototypes"
description = 'Prototype widgets for orange-spectroscopy add-on'
authors = [
{ name="Stuart Read", email="stuart.read@lightsource.ca"}
]
version = "2026.3.11"
readme = {file = "README.pypi", content-type = "text/markdown"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
keywords = ["orange3 add-on", "spectroscopy", "prototypes"]
dependencies = [
"orange-spectroscopy>=0.8.1",
]
[project.optional-dependencies]
doc = [
"sphinx",
"recommonmark",
"sphinx_rtd_theme",
]
test = [
"pytest",
"coverage",
]
dev = [
"pre-commit",
"ruff",
]
[project.urls]
Homepage = "https://github.com/Quasars/orange-spectroscopy-prototypes"
Issues = "https://github.com/Quasars/orange-spectroscopy-prototypes/issues"
[project.entry-points."orange3.addon"]
protospec = "orangecontrib.protospec"
[project.entry-points."orange.widgets.tutorials"]
"Spectroscopy Prototypes Examples" = "orangecontrib.protospec.tutorials"
[project.entry-points."orange.widgets"]
"Spectroscopy Prototypes" = "orangecontrib.protospec.widgets"
[project.entry-points."orange.canvas.help"]
html-index = "orangecontrib.protospec.widgets:WIDGET_HELP_PATH"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
exclude = ['heterodyne_postprocessing']
force-exclude = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "UP"]
[tool.ruff.format]
quote-style = "preserve"