Select Git revision
pyproject.toml
pyproject.toml 1.10 KiB
[tool.poetry]
name = "pyslurm"
version = "0.3.0"
description = ""
license = "GPL-3.0-or-later"
authors = [
"Adrian Rohner <adrian.rohner@ost.ch>",
"Alain Schubiger <alain.schubiger@ost.ch>",
"Roland Peterer <roland.peterer@ost.ch>"
]
readme = "README.md"
repository = "https://gitlab.ost.ch/scl/submitscripts"
keywords = ['submitscripts', 'cluster']
classifiers = [
"Topic :: Software Development :: Cluster",
]
packages = [
{ include = "pyslurm" },
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
sphinx = "*"
python-semantic-release = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
publish = "scripts:publish"
version = "scripts:version"
changelog = "scripts:changelog"
test = "scripts:test"
mypy = "scripts:mypy"
[tool.semantic_release]
version_variable = [
'pyslurm/__init__.py:__version__', 'pyproject.toml:version', 'doc/source/conf.py:release'
]
version_source = "commit"
upload_to_pypi = false
hvcs = "gitlab"
branch = "stable"
changelog_file = "CHANGELOG.md"
patch_without_tag = true
build_command = ""