-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
110 lines (98 loc) · 3.1 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cwl-utils"
authors = [{name = "Common Workflow Language project contributors", email = "common-workflow-language@googlegroups.com"}]
license = {text = "Apache 2.0"}
keywords = ["cwl", "commonwl", "common-workflow-language", "sciworkflows"]
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: File Formats",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Distributed Computing",
"Typing :: Typed",
]
requires-python = ">=3.9,<3.14"
dynamic = ["version", "dependencies"]
[project.urls]
Documentation = "https://cwl-utils.readthedocs.io/"
Homepage = "https://www.commonwl.org"
Repository = "https://github.com/common-workflow-language/cwl-utils"
Issues = "https://github.com/common-workflow-language/cwl-utils/issues"
Changelog = "https://github.com/common-workflow-language/cwl-utils/releases"
"Related Tools" = "https://www.commonwl.org/tools/"
[project.optional-dependencies]
pretty = ["cwlformat"]
testing = [
"pytest<9",
"pytest-mock",
]
[project.scripts]
cwl-cite-extract = "cwl_utils.cite_extract:main"
cwl-docker-extract = "cwl_utils.docker_extract:main"
cwl-expression-refactor = "cwl_utils.expression_refactor:main"
cwl-graph-split = "cwl_utils.graph_split:main"
cwl-normalizer = "cwl_utils.normalizer:main"
cwl-inputs-schema-gen = "cwl_utils.inputs_schema_gen:main"
[tool.aliases]
test = "pytest"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
packages = [
"cwl_utils",
"cwl_utils.parser",
"cwl_utils.tests",
"cwl_utils.testdata",
"cwl_utils.testdata.checker_wf",
"cwl_utils.testdata.extensions",
"cwl_utils.testdata.types",
"cwl_utils.testdata.workflows",
]
include-package-data = true
[tool.setuptools.package-dir]
"cwl_utils.parser" = "cwl_utils/parser"
"cwl_utils.tests" = "tests"
"cwl_utils.testdata" = "testdata"
"cwl_utils.testdata.checker_wf" = "testdata/checker_wf"
"cwl_utils.testdata.extensions" = "testdata/extensions"
"cwl_utils.testdata.types" = "testdata/types"
"cwl_utils.testdata.workflows" = "testdata/workflows"
[tool.setuptools.package-data]
"cwl_utils" = ["templates/*.json"]
[tool.setuptools.dynamic]
version = {attr = "cwl_utils.__meta__.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.isort]
profile = "black"
[tool.ruff.lint]
select = [
"D", # pydocstyle
]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D203",
"D212",
]