tag-publish 1.2.0.dev93__tar.gz → 1.2.0.dev99__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tag-publish
3
- Version: 1.2.0.dev93
3
+ Version: 1.2.0.dev99
4
4
  Summary: Tools used to publish Python packages, Docker images and Helm charts for GitHub tag and branch
5
5
  License: FreeBSD
6
6
  License-File: LICENSE
@@ -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.dev99"
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"
@@ -36,8 +84,8 @@ githubkit = "0.14.3"
36
84
  prospector = { version = "1.17.3", extras = ["with_bandit", "with_mypy", "with_pyroma", "with_ruff"] }
37
85
  prospector-profile-duplicated = "1.11.0"
38
86
  prospector-profile-utils = "1.26.5"
39
- types-requests = "2.33.0.20260408"
40
- types-pyyaml = "6.0.12.20260408"
87
+ types-requests = "2.33.0.20260712"
88
+ types-pyyaml = "6.0.12.20260518"
41
89
 
42
90
  [tool.poetry-dynamic-versioning]
43
91
  enable = false
@@ -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.dev93"
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"