-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
101 lines (92 loc) · 2.79 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sapporo"
version = "2.0.6"
authors = [
{ name = "DDBJ (Bioinfomatics and DDBJ Center)", email = "[email protected]" },
]
description = "The sapporo-service is a standard implementation conforming to the Global Alliance for Genomics and Health (GA4GH) Workflow Execution Service (WES) API specification."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = ["workflow", "WES", "GA4GH-WES", "bioinformatics"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"apscheduler",
"fastapi",
"httpx",
"multiqc",
"pydantic",
"pyjwt[crypto]",
"python-magic",
"python-multipart",
"pyyaml",
"rocrate",
"sqlmodel",
"uvicorn[standard]",
]
[project.urls]
Homepage = "https://github.com/sapporo-wes/sapporo-service"
Documentation = "https://github.com/sapporo-wes/sapporo-service/blob/main/README.md"
Repository = "https://github.com/sapporo-wes/sapporo-service.git"
[project.optional-dependencies]
tests = [
"isort",
"mypy",
"pylint",
"pytest-cov",
"pytest-mock",
"pytest",
"types-PyYAML",
]
[project.scripts]
sapporo = "sapporo.app:main"
[tool.setuptools]
packages = ["sapporo"]
[tool.setuptools.package-data]
sapporo = [
"service_info.json",
"executable_workflows.json",
"auth_config.json",
"run.sh",
"ga4gh-wes-spec-1.1.0.yml",
]
[tool.pytest.ini_options]
addopts = "--cov=sapporo --cov-report=html:tests/htmlcov"
testpaths = ["tests/py_tests"]
[tool.mypy]
files = ["./sapporo/**/*.py"]
follow_imports = "silent"
strict = true
ignore_missing_imports = true
[tool.pylint.messages_control]
disable = [
"C0114", # Missing module docstring
"C0115", # Missing class docstring
"C0116", # Missing function or method docstring
"C0301", # Line too long
"R0401", # Cyclic import
"R0903", # Too few public methods
"R0911", # Too many return statements
"R0912", # Too many branches
"R0913", # Too many arguments
"R0914", # Too many local variables
"R0915", # Too many statements
"R0917", # Too many positional arguments
"R1705", # Unnecessary "else" after "return"
"W0719", # Raising too general exception
]