-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (91 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (91 loc) · 2.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=46.4"]
build-backend = "setuptools.build_meta"
[project]
name = "ewoks"
version = "7.0.0rc1"
authors = [{ name = "ESRF", email = "dau-pydev@esrf.fr" }]
description = "Extensible Workflow System"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.md" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"ewokscore >=5,<6",
"ewoksutils >=2.0.0rc1,<3",
"tabulate",
"importlib_resources; python_version < '3.9'",
]
[project.urls]
Homepage = "https://github.com/ewoks-kit/ewoks/"
Documentation = "https://ewoks.readthedocs.io/"
Repository = "https://github.com/ewoks-kit/ewoks/"
Issues = "https://github.com/ewoks-kit/ewoks/issues"
Changelog = "https://github.com/ewoks-kit/ewoks/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dask = ["ewoksdask >=3,<4"]
ppf = ["ewoksppf >=3,<4"]
orange = ["ewoksorange >=6.0.0rc6,<7"]
esrf-data-portal = ["pyicat-plus"]
notebooks = ["ewokscore[notebooks]"]
test = [
"ewoksutils[test]",
"ewoks[dask]",
"ewoks[ppf]",
"ewoks[orange]",
"ewoks[esrf-data-portal]",
"pytest >=7",
"testbook",
"ipykernel",
"importlib_resources",
"pyqt5",
"defusedxml",
]
dev = [
"ewoks[test]",
"ruff>=0.16.0"
]
doc = [
"ewoks[test]",
"sphinx >=4.5",
"docutils <0.22",
"sphinx-autodoc-typehints >=1.16",
"ipykernel",
"nbsphinx",
"nbsphinx_link",
"pydata-sphinx-theme",
"sphinx-argparse",
"sphinx-copybutton",
"sphinx-tabs",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
omit = ['*/tests/*']
[project.scripts]
ewoks = "ewoks.__main__:main"
[tool.setuptools.package-data]
"ewoks.tests.notebooks" = ["*.ipynb"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"S", # flake8-bandit
]
ignore = [
"E501", # line too long
]
[tool.ruff.lint.per-file-ignores]
"src/ewoks/tests/*.py" = [
"S101" # allow asserts
]
[tool.ruff.lint.isort]
force-single-line = true
known-first-party = ["ewoks"]