-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.74 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
[build-system]
requires = [
"setuptools>=61.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "wes-service"
version = "4.0"
authors = [{name = "GA4GH Containers and Workflows task team", email = "[email protected]"}]
description = "GA4GH Workflow Execution Service reference implementation"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = [
"connexion[swagger-ui] >= 2.0.2, < 3",
"ruamel.yaml >= 0.15.78",
"schema-salad",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/common-workflow-language/cwltool-service"
Download = "https://github.com/common-workflow-language/cwltool-service/releases"
"Bug Tracker" = "https://github.com/common-workflow-language/cwltool-service/issues"
[project.optional-dependencies]
cwltool = ["cwlref-runner"]
arvados = ["arvados-cwl-runner"]
toil = ["toil[cwl]==8.0.0"]
[project.scripts]
wes-server = "wes_service.wes_service_main:main"
wes-client = "wes_client.wes_client_main:main"
[tool.setuptools]
packages = ["wes_service", "wes_client"]
include-package-data = true
zip-safe = false
platforms = ['"MacOS X"', '"Posix"']
[tool.setuptools.package-data]
wes_service = ["openapi/workflow_execution_service.swagger.yaml"]
[tool.isort]
profile = "black"