-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (66 loc) · 1.74 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tutor-contrib-drydock"
dynamic = ["version"]
description = "A Tutor plugin to manage our opinionated Open edX operations"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "AGPLv3" }
authors = [
{ name = "eduNEXT" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=19.0.0,<20.0.0"
]
[project.optional-dependencies]
dev = [
"build",
"python-semantic-release",
]
[project.urls]
Homepage = "https://github.com/edunext/drydock"
Code = "https://github.com/edunext/drydock"
"Issue tracker" = "https://github.com/edunext/drydock/issues"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[project.entry-points."tutor.plugin.v1"]
drydock = "drydock.plugin"
[tool.setuptools.dynamic]
version = {attr = "drydock.__about__.__version__"}
[tool.wheel]
universal = true
[tool.semantic_release]
commit_message = "chore(release): preparing {version}"
version_variables = [
"drydock/__about__.py:__version__",
]
[tool.semantic_release.branches.main]
match = "(main|master)"
[tool.semantic_release.changelog.environment]
keep_trailing_newline = true
[tool.semantic_release.changelog]
exclude_commit_patterns = [
"docs:",
"build:",
"style:",
"chore:",
"test:",
"revert:",
"perf:",
"refactor:",
"ci:",
]