autopub 1.0.0a21__tar.gz → 1.0.0a22__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {autopub-1.0.0a21 → autopub-1.0.0a22}/PKG-INFO +2 -1
- {autopub-1.0.0a21 → autopub-1.0.0a22}/pyproject.toml +3 -3
- {autopub-1.0.0a21 → autopub-1.0.0a22}/LICENSE +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/__init__.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/cli/__init__.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/exceptions.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugin_loader.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/__init__.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/bump_version.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/git.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/pdm.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/poetry.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/update_changelog.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/plugins/uv.py +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/py.typed +0 -0
- {autopub-1.0.0a21 → autopub-1.0.0a22}/autopub/types.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: autopub
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.0a22
|
4
4
|
Summary: Automatic package release upon pull request merge
|
5
5
|
Home-page: https://github.com/autopub/autopub
|
6
6
|
Author: Justin Mayer
|
@@ -16,6 +16,7 @@ Provides-Extra: github
|
|
16
16
|
Requires-Dist: dunamai (>=1.23.0,<2.0.0)
|
17
17
|
Requires-Dist: pydantic (>=2.10.5,<3.0.0)
|
18
18
|
Requires-Dist: python-frontmatter (>=1.1.0,<2.0.0)
|
19
|
+
Requires-Dist: rich (>=13.9.4,<14.0.0)
|
19
20
|
Requires-Dist: tomlkit (>=0.13.2,<0.14.0)
|
20
21
|
Project-URL: Issue Tracker, https://github.com/autopub/autopub/issues
|
21
22
|
Project-URL: Repository, https://github.com/autopub/autopub
|
@@ -1,7 +1,7 @@
|
|
1
1
|
[project]
|
2
2
|
requires-python = ">=3.9.0,<4.0"
|
3
|
+
version = "1.0.0-alpha.22"
|
3
4
|
name = "autopub"
|
4
|
-
version = "1.0.0-alpha.21"
|
5
5
|
description = "Automatic package release upon pull request merge"
|
6
6
|
authors = [
|
7
7
|
{ name = "Justin Mayer", email = "entroP@gmail.com" },
|
@@ -25,7 +25,7 @@ classifiers = [
|
|
25
25
|
repository = "https://github.com/autopub/autopub"
|
26
26
|
include = ["autopub/py.typed"]
|
27
27
|
name = "autopub"
|
28
|
-
version = "1.0.0-alpha.
|
28
|
+
version = "1.0.0-alpha.22"
|
29
29
|
description = "Automatic package release upon pull request merge"
|
30
30
|
authors = [
|
31
31
|
"Justin Mayer <entroP@gmail.com>",
|
@@ -41,6 +41,7 @@ python-frontmatter = "^1.1.0"
|
|
41
41
|
tomlkit = "^0.13.2"
|
42
42
|
pydantic = "^2.10.5"
|
43
43
|
dunamai = "^1.23.0"
|
44
|
+
rich = "^13.9.4"
|
44
45
|
|
45
46
|
|
46
47
|
[tool.poetry.dev-dependencies]
|
@@ -55,7 +56,6 @@ invoke = "^1.6"
|
|
55
56
|
# Docs
|
56
57
|
furo = "^2021.9.22"
|
57
58
|
livereload = "^2.6"
|
58
|
-
myst-parser = "^0.15"
|
59
59
|
Sphinx = "^4.2"
|
60
60
|
|
61
61
|
# Linting
|
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
|
File without changes
|