-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
72 lines (60 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
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm>=8.0.4,<9",
]
build-backend = "setuptools.build_meta"
[project]
name = "cwltest"
authors = [{name = "Common workflow language working group", email = "common-workflow-language@googlegroups.com"}]
license = {text = "Apache 2.0"}
description = "Common Workflow Language testing framework"
classifiers = [
"Environment :: Console",
"Framework :: Pytest",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
requires-python = ">=3.8,<3.14"
dynamic = ["version", "dependencies"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/common-workflow-language/cwltest"
Download = "https://github.com/common-workflow-language/cwltest"
[project.entry-points.pytest11]
cwl = "cwltest.plugin"
[project.optional-dependencies]
pytest-plugin = ["pytest"]
[project.scripts]
cwltest = "cwltest.main:main"
[tool.aliases]
test = "pytest"
[tool.setuptools]
package-dir = {"cwltest.tests" = "tests"}
packages = ["cwltest", "cwltest.tests"]
zip-safe = true
include-package-data = true
[tool.setuptools.package-data]
cwltest = ["py.typed"]
tests = ["test-data/*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.isort]
multi_line_output = "3"
include_trailing_comma = "True"
force_grid_wrap = "0"
use_parentheses = "True"
line_length = "88"
[tool.setuptools_scm]
write_to = "cwltest/_version.py"