-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.24 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
[tool.poetry]
name = "hpcflow-new"
version = "0.1.16"
description = "Computational workflow management"
authors = ["aplowman <adam.plowman@manchester.ac.uk>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "hpcflow" }
]
include = [
"hpcflow/data/workflow_spec_schema.yaml",
"hpcflow/data/task_schema_spec_schema.yaml",
"hpcflow/data/environments_spec_schema.yaml"
]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
zarr = "^2.10.3"
"ruamel.yaml" = "^0.17.20"
click = "^8.0.4"
valida = "^0.2.0"
pyinstaller = { version = "^4.10", optional = true}
[tool.poetry.dev-dependencies]
pylint = "^2.12.2"
ipykernel = "^6.6.1"
pytest = "^6.2.5"
commitizen = "^2.20.3"
pre-commit = "^2.16.0"
black = "^21.12b0"
Sphinx = "^4.4.0"
pydata-sphinx-theme = "^0.8.0"
sphinx-jinja = "^2.0.1"
sphinx-copybutton = "^0.5.0"
[tool.poetry.extras]
pyinstaller = ["pyinstaller"]
[tool.poetry.scripts]
hpcflow = 'hpcflow.cli:cli'
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.16"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"hpcflow/_version.py"
]
bump_message = "bump: $current_version → $new_version [skip ci]"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"