forked from JuliaRegistries/TagBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 2.02 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
[project]
name = "tagbot"
version = "1.25.7"
description = "Creates tags, releases, and changelogs for your Julia packages when they're registered"
authors = [{name = "Chris de Graaf", email = "me@cdg.dev"}]
license = "MIT"
requires-python = ">=3.12"
dynamic = ["dependencies"]
[project.optional-dependencies]
gitlab = ["python-gitlab>=8.2.0,<9"]
ssh = ["pexpect>=4.8.0,<5"]
gpg = ["python-gnupg>=0.5.6,<1"]
reporting = ["docker>=7.1.0,<8", "requests>=2.28.0,<3"]
web = ["Flask==3.1.3", "werkzeug==3.1.7", "pylev>=1.3.0,<2"]
local = ["click>=8,<9", "pyyaml>=6,<7"]
all = ["pexpect>=4.8.0,<5", "python-gnupg>=0.5.6,<1", "docker>=7.1.0,<8", "requests>=2.28.0,<3", "Flask==3.1.3", "werkzeug==3.1.7", "pylev>=1.3.0,<2", "click>=8,<9", "pyyaml>=6,<7", "python-gitlab>=8.2.0,<9"]
[tool.poetry]
requires-plugins = {poetry-plugin-export = ">=1.8"}
[tool.poetry.dependencies]
python = "^3.12"
Jinja2 = "^3"
PyGithub = "^2.9.0"
semver = "^3.0.4"
toml = "^0.10.0"
# Optional: only needed when using SSH key passwords
pexpect = { version = "^4.8.0", optional = true }
# Optional: only needed when using GPG signing
python-gnupg = { version = "^0.5.6", optional = true }
# Optional: only needed for error reporting to julia-tagbot.com
docker = { version = "^7.1.0", optional = true }
requests = { version = "^2.33.1", optional = true }
# Optional: only needed for the web service
Flask = { version = "3.1.3", optional = true }
werkzeug = { version = "3.1.7", optional = true }
pylev = { version = "^1.3.0", optional = true }
# Optional: only needed for the local CLI
click = { version = "^8", optional = true }
pyyaml = { version = "^6", optional = true }
# Optional: only needed for GitLab repos
python-gitlab = { version = "^8.2.0", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^26.3"
boto3 = "^1.42.83"
flake8 = "^7"
mypy = "^1.20"
pytest-cov = "^7.1.0"
types-requests = "^2.33.0"
types-toml = "^0.10.8"
types-PyYAML = "6.0.12.20250915"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"