-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
107 lines (91 loc) · 2.75 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
102
103
104
105
106
107
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "grader-service"
description = "Grader service"
version = "0.6.3"
requires-python = ">=3.8"
authors = [{name='Florian Jäger'}, {name='Matthias Matt'}]
license = {text = "BSD-3-Clause"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Framework :: Jupyter",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"alembic>=1.13",
"async_generator>=1.10",
"celery>=5.4",
"cryptography>=43",
"isodate>=0.7",
"json5>=0.9",
"jsonschema>=4",
"jupyter-client>=8.6",
"jupyter_core>=5.7",
"jupyterhub>=5",
"kubernetes>=31",
"nbconvert>=7.16",
"nbformat>=5.4.0",
"psycopg2-binary>= 2.9",
"PyJWT>=2.9",
"python-dateutil>=2.9",
"SQLAlchemy>=2.0.35",
"tornado>=6.4",
"traitlets>=5.14",
"typing-extensions>=4.12",
"urllib3>=2.2",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["grader_service.tests", "grader_service.tests.*"]
[project.scripts]
grader-service = "grader_service:main"
grader-service-migrate = "grader_service.migrate.migrate:main"
grader-convert = "grader_service.convert.main:main"
grader-worker = "grader_service.autograding.celery.worker:main"
[project.urls]
Homepage = "https://github.com/TU-Wien-dataLAB/grader-service"
Repository = "https://github.com/TU-Wien-dataLAB/grader-service"
Documentation = "https://grader-service.readthedocs.io/en/latest/index.html"
[tool.tbump]
# Uncomment this if your project is hosted on GitHub:
github_url = "https://github.com/TU-Wien-dataLAB/grader-service"
[tool.tbump.version]
current = "0.6.3"
# Example of a semver regexp.
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
\-?
(?P<pre>((a|b|rc|dev|nightly)\d+)?)
'''
[tool.tbump.git]
message_template = "Bump service to {new_version}"
tag_template = "grader-service-{new_version}"
# For each file to patch, add a [[tool.tbump.file]] config
# section containing the path of the file, relative to the
# pyproject.toml location.
[[tool.tbump.file]]
src = "pyproject.toml"
search = "version = \"{current_version}\""
[[tool.tbump.file]]
src = "grader_service/_version.py"
search = "__version__ = '{current_version}'"
[[tool.tbump.file]]
src = "./docs/source/_static/openapi/grader_api.yml"
search = "version: '{current_version}'"
[[tool.tbump.file]]
src = "./charts/grader-service/Chart.yaml"
search = "appVersion: \"{current_version}\""