quickpub 0.5.1__tar.gz → 0.5.2__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.
- {quickpub-0.5.1 → quickpub-0.5.2}/PKG-INFO +23 -1
- quickpub-0.5.2/README.md +23 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/pyproject.toml +1 -1
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub.egg-info/PKG-INFO +23 -1
- quickpub-0.5.1/README.md +0 -1
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/__init__.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/__main__.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/classifiers.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/files.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/proxy.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/publish.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub/structures.py +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub.egg-info/SOURCES.txt +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub.egg-info/dependency_links.txt +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub.egg-info/requires.txt +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/quickpub.egg-info/top_level.txt +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/setup.cfg +0 -0
- {quickpub-0.5.1 → quickpub-0.5.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quickpub
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: A python package to quickly configure and publish a new package
|
|
5
5
|
Author-email: danielnachumdev <danielnachumdev@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -35,3 +35,25 @@ Requires-Python: >=3.10.13
|
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
37
37
|
# quickpub
|
|
38
|
+
|
|
39
|
+
Example usage of how this package was published
|
|
40
|
+
```python
|
|
41
|
+
from quickpub import publish
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def main() -> None:
|
|
45
|
+
publish(
|
|
46
|
+
name="quickpub",
|
|
47
|
+
version="0.5.2",
|
|
48
|
+
author="danielnachumdev",
|
|
49
|
+
author_email="danielnachumdev@gmail.com",
|
|
50
|
+
description="A python package to quickly configure and publish a new package",
|
|
51
|
+
homepage="https://github.com/danielnachumdev/quickpub",
|
|
52
|
+
keywords=["Utils", "PyPi", "Publish", "Quick"],
|
|
53
|
+
dependencies=["twine", "danielutils"]
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
if __name__ == "__main__":
|
|
58
|
+
main()
|
|
59
|
+
```
|
quickpub-0.5.2/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# quickpub
|
|
2
|
+
|
|
3
|
+
Example usage of how this package was published
|
|
4
|
+
```python
|
|
5
|
+
from quickpub import publish
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def main() -> None:
|
|
9
|
+
publish(
|
|
10
|
+
name="quickpub",
|
|
11
|
+
version="0.5.2",
|
|
12
|
+
author="danielnachumdev",
|
|
13
|
+
author_email="danielnachumdev@gmail.com",
|
|
14
|
+
description="A python package to quickly configure and publish a new package",
|
|
15
|
+
homepage="https://github.com/danielnachumdev/quickpub",
|
|
16
|
+
keywords=["Utils", "PyPi", "Publish", "Quick"],
|
|
17
|
+
dependencies=["twine", "danielutils"]
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if __name__ == "__main__":
|
|
22
|
+
main()
|
|
23
|
+
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quickpub
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: A python package to quickly configure and publish a new package
|
|
5
5
|
Author-email: danielnachumdev <danielnachumdev@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -35,3 +35,25 @@ Requires-Python: >=3.10.13
|
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
37
37
|
# quickpub
|
|
38
|
+
|
|
39
|
+
Example usage of how this package was published
|
|
40
|
+
```python
|
|
41
|
+
from quickpub import publish
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def main() -> None:
|
|
45
|
+
publish(
|
|
46
|
+
name="quickpub",
|
|
47
|
+
version="0.5.2",
|
|
48
|
+
author="danielnachumdev",
|
|
49
|
+
author_email="danielnachumdev@gmail.com",
|
|
50
|
+
description="A python package to quickly configure and publish a new package",
|
|
51
|
+
homepage="https://github.com/danielnachumdev/quickpub",
|
|
52
|
+
keywords=["Utils", "PyPi", "Publish", "Quick"],
|
|
53
|
+
dependencies=["twine", "danielutils"]
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
if __name__ == "__main__":
|
|
58
|
+
main()
|
|
59
|
+
```
|
quickpub-0.5.1/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# quickpub
|
|
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
|