-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.61 KB
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "juqueue"
version = "0.0.15"
description = "Computation and work management system for time-constrained cluster environments."
readme = "README.md"
authors = [{ name = "Viet Anh Khoa Tran", email = "v.tran@fz-juelich.de" }]
license = { text = "GNU General Public License v3 (GPLv3)" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["workflow", "cluster", "management", "slurm", "dask"]
dependencies = [
"pyyaml~=6.0",
"dask_jobqueue",
"dask~=2022.5.2",
"tornado~=6.1",
"loguru~=0.6.0",
"nest_asyncio",
"filelock~=3.7.1",
"fastapi~=0.78.0",
"hypercorn~=0.13.2",
"pydantic~=1.9.1",
"uvloop~=0.16.0",
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools"]
[tool.setuptools.packages.find]
include = ["juqueue*", "juqueue_bin*"]
[project.urls]
Homepage = "https://github.com/tran-khoa/JuQueue"
[project.scripts]
juqueue = "juqueue_bin.main:main"
[tool.bumpver]
current_version = "0.0.15"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"juqueue/__init__.py" = ["__version__ = '{version}'"]