-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.84 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
[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 = "2024.11.19"
readme = {file = "README.pypi", content-type = "text/markdown"}
requires-python = ">=3.9"
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.7.2",
]
[project.optional-dependencies]
doc = [
"sphinx",
"recommonmark",
"sphinx_rtd_theme",
]
test = [
"pytest",
"coverage",
"flake8",
"flake8-bugbear",
"flake8-pyproject",
"black",
]
dev = [
"pre-commit",
]
[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"]
"Spectroscopy Prototypes" = "orangecontrib.protospec.widgets"
[project.entry-points."orange.canvas.help"]
html-index = "orangecontrib.protospec.widgets:WIDGET_HELP_PATH"
[tool.setuptools.packages.find]
include = ["orangecontrib*"]
[tool.black]
skip_string_normalization = '1'
[tool.flake8]
# Black compatibility
max-line-length = 88
extend-ignore = [
# See https://github.com/PyCQA/pycodestyle/issues/373
'E203',
# Ignore this since we use PyQt5 basically everywhere.
'N802',
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
'E501',
]
extend-select = ['B590']