tag-publish 1.2.0.dev92__tar.gz → 1.2.0.dev98__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/PKG-INFO +1 -1
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/pyproject.toml +48 -47
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/LICENSE +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/README.md +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/__init__.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/cli.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/configuration.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/lib/__init__.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/lib/docker.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/lib/oidc.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/new.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/publish.py +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/py.typed +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/schema.json +0 -0
- {tag_publish-1.2.0.dev92 → tag_publish-1.2.0.dev98}/tag_publish/versions.yaml +0 -0
|
@@ -1,3 +1,51 @@
|
|
|
1
|
+
|
|
2
|
+
[build-system]
|
|
3
|
+
requires = [
|
|
4
|
+
"poetry-core>=1.0.0",
|
|
5
|
+
"poetry-dynamic-versioning[plugin]>=0.19.0",
|
|
6
|
+
]
|
|
7
|
+
build-backend = "poetry.core.masonry.api"
|
|
8
|
+
|
|
9
|
+
[project]
|
|
10
|
+
classifiers = [
|
|
11
|
+
'Development Status :: 5 - Production/Stable',
|
|
12
|
+
'Environment :: Console',
|
|
13
|
+
'Intended Audience :: Developers',
|
|
14
|
+
'License :: OSI Approved :: MIT License',
|
|
15
|
+
'Operating System :: OS Independent',
|
|
16
|
+
'Programming Language :: Python',
|
|
17
|
+
'Programming Language :: Python :: 3',
|
|
18
|
+
'Programming Language :: Python :: 3.9',
|
|
19
|
+
'Programming Language :: Python :: 3.10',
|
|
20
|
+
'Programming Language :: Python :: 3.11',
|
|
21
|
+
'Programming Language :: Python :: 3.12',
|
|
22
|
+
'Programming Language :: Python :: 3.13',
|
|
23
|
+
'Typing :: Typed',
|
|
24
|
+
]
|
|
25
|
+
dynamic = ["dependencies"]
|
|
26
|
+
name = "tag-publish"
|
|
27
|
+
description = "Tools used to publish Python packages, Docker images and Helm charts for GitHub tag and branch"
|
|
28
|
+
readme = "README.md"
|
|
29
|
+
keywords = ["ci"]
|
|
30
|
+
license = "FreeBSD"
|
|
31
|
+
authors = [{name = "Camptocamp", email = "info@camptocamp.com"}]
|
|
32
|
+
packages = [{ include = "tag_publish" }]
|
|
33
|
+
include = [
|
|
34
|
+
"tag_publish/py.typed",
|
|
35
|
+
"tag_publish/*.json",
|
|
36
|
+
]
|
|
37
|
+
requires-python = ">=3.9"
|
|
38
|
+
dependencies = ["requests<3,>=2", "twine<7,>=6", "PyYAML<7,>=6", "id<2,>=1", "security-md<2,>=1", "applications-download<2,>=1", "jsonschema-validator-new<1,>=0", "debian-inspector<32,>=31", "multi-repo-automation<2,>=1", "githubkit<1,>=0"]
|
|
39
|
+
version = "1.2.0.dev98"
|
|
40
|
+
|
|
41
|
+
[project.urls]
|
|
42
|
+
repository = "https://github.com/camptocamp/tag-publish"
|
|
43
|
+
"Bug Tracker" = "https://github.com/camptocamp/tag-publish/issues"
|
|
44
|
+
|
|
45
|
+
[project.scripts]
|
|
46
|
+
tag-publish = "tag_publish.cli:main"
|
|
47
|
+
tag-publish-new = "tag_publish.new:main"
|
|
48
|
+
|
|
1
49
|
[tool.ruff]
|
|
2
50
|
line-length = 110
|
|
3
51
|
target-version = "py39"
|
|
@@ -57,50 +105,3 @@ format-jinja = """
|
|
|
57
105
|
|
|
58
106
|
[tool.poetry-plugin-tweak-dependencies-version]
|
|
59
107
|
default = "major"
|
|
60
|
-
|
|
61
|
-
[project]
|
|
62
|
-
classifiers = [
|
|
63
|
-
'Development Status :: 5 - Production/Stable',
|
|
64
|
-
'Environment :: Console',
|
|
65
|
-
'Intended Audience :: Developers',
|
|
66
|
-
'License :: OSI Approved :: MIT License',
|
|
67
|
-
'Operating System :: OS Independent',
|
|
68
|
-
'Programming Language :: Python',
|
|
69
|
-
'Programming Language :: Python :: 3',
|
|
70
|
-
'Programming Language :: Python :: 3.9',
|
|
71
|
-
'Programming Language :: Python :: 3.10',
|
|
72
|
-
'Programming Language :: Python :: 3.11',
|
|
73
|
-
'Programming Language :: Python :: 3.12',
|
|
74
|
-
'Programming Language :: Python :: 3.13',
|
|
75
|
-
'Typing :: Typed',
|
|
76
|
-
]
|
|
77
|
-
dynamic = ["dependencies"]
|
|
78
|
-
name = "tag-publish"
|
|
79
|
-
description = "Tools used to publish Python packages, Docker images and Helm charts for GitHub tag and branch"
|
|
80
|
-
readme = "README.md"
|
|
81
|
-
keywords = ["ci"]
|
|
82
|
-
license = "FreeBSD"
|
|
83
|
-
authors = [{name = "Camptocamp", email = "info@camptocamp.com"}]
|
|
84
|
-
packages = [{ include = "tag_publish" }]
|
|
85
|
-
include = [
|
|
86
|
-
"tag_publish/py.typed",
|
|
87
|
-
"tag_publish/*.json",
|
|
88
|
-
]
|
|
89
|
-
requires-python = ">=3.9"
|
|
90
|
-
dependencies = ["requests<3,>=2", "twine<7,>=6", "PyYAML<7,>=6", "id<2,>=1", "security-md<2,>=1", "applications-download<2,>=1", "jsonschema-validator-new<1,>=0", "debian-inspector<32,>=31", "multi-repo-automation<2,>=1", "githubkit<1,>=0"]
|
|
91
|
-
version = "1.2.0.dev92"
|
|
92
|
-
|
|
93
|
-
[project.urls]
|
|
94
|
-
repository = "https://github.com/camptocamp/tag-publish"
|
|
95
|
-
"Bug Tracker" = "https://github.com/camptocamp/tag-publish/issues"
|
|
96
|
-
|
|
97
|
-
[project.scripts]
|
|
98
|
-
tag-publish = "tag_publish.cli:main"
|
|
99
|
-
tag-publish-new = "tag_publish.new:main"
|
|
100
|
-
|
|
101
|
-
[build-system]
|
|
102
|
-
requires = [
|
|
103
|
-
"poetry-core>=1.0.0",
|
|
104
|
-
"poetry-dynamic-versioning[plugin]>=0.19.0",
|
|
105
|
-
]
|
|
106
|
-
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|