forked from NGeneBio-Genomics-Platform/oliver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
101 lines (95 loc) · 2.19 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]
build-backend = "poetry.masonry.api"
requires = ["poetry>=1.0.5"]
[tool.poetry]
authors = [
"Clay Mcleod <[email protected]>",
"Jobin Sunny <[email protected]>",
"Andrew Thrasher <[email protected]>",
"Andrew Frantz <[email protected]",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
description = "An opinionated Cromwell orchestration system"
documentation = "https://stjudecloud.github.io/oliver/"
homepage = "https://stjudecloud.github.io/oliver/"
include = [
"*.txt",
"*.md",
]
keywords = [
"bioinformatics",
"genomics",
"workflows",
"cromwell",
]
license = "MIT"
name = "stjudecloud-oliver"
packages = [
{include = "oliver"},
]
readme = "README.md"
repository = "https://github.com/stjudecloud/oliver"
version = "1.4.7"
[tool.poetry.scripts]
oliver = "oliver.__main__:main"
[tool.poetry.dependencies]
aiohttp = "^3.6.2"
azure-cosmos = ">=3.1.2,<5.0.0"
boto3 = "^1.11.9"
logzero = "^1.5.0"
mypy-boto3 = {extras = ["batch", "logs"], version = "^1.12.17"}
mypy_boto3_batch = "^1.12.21"
mypy_boto3_logs = "^1.12.21"
pendulum = "^2.0.5"
python = "^3.9.7"
requests = "^2.22.0"
tabulate = "^0.8.6"
typed-ast = "1.5.2"
tzlocal = "<3.0.0"
[tool.poetry.dev-dependencies]
black = "^21.11b1"
boto3-stubs = "^1.12.17"
mkdocs = "^1.0.4"
mkdocs-bootswatch = "^1.0"
mypy = "^0.910"
pydocstyle = "^6.1.1"
pylint = "2.12.2"
pytest = "^6.2.5"
pytest-asyncio = "^0.16.0"
pytest-cov = "^3.0.0"
python-semantic-release = ">=6.0.0"
rope = "^0.22.0"
types-tabulate = "^0.8.3"
[tool.semantic_release]
build_command = "poetry build"
commit_author = "St. Jude Cloud <[email protected]>"
commit_message = ""
commit_subject = "chore: bumping version to v{version}"
upload_to_release = "false"
version_source = "commit"
version_variable = "pyproject.toml:version"
# check_build_status = true
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| __pycache__
| .*egg-info
)/
'''
include = '\.pyi?$'
target-version = ['py36', 'py37', 'py38']