quickpub 0.0.1__tar.gz → 0.5.0__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.1
2
2
  Name: quickpub
3
- Version: 0.0.1
3
+ Version: 0.5.0
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "quickpub"
7
- version = "0.0.1"
7
+ version = "0.5.0"
8
8
  authors = [
9
9
  { name = "danielnachumdev", email = "danielnachumdev@gmail.com" },
10
10
  ]
@@ -0,0 +1,6 @@
1
+ from .__main__ import publish
2
+ from .classifiers import *
3
+ from .files import *
4
+ from .publish import *
5
+ from .structures import *
6
+ from .proxy import *
@@ -0,0 +1,11 @@
1
+ import danielutils
2
+
3
+
4
+ # need it like this for the testing
5
+ def cm(*args, **kwargs)->tuple[int,bytes,bytes]:
6
+ return danielutils.cm(*args, **kwargs)
7
+
8
+
9
+ __all__ = [
10
+ "cm"
11
+ ]
@@ -1,5 +1,6 @@
1
- from danielutils import cm, info, error
1
+ from danielutils import info, error
2
2
 
3
+ from .proxy import cm
3
4
  from .structures import Version
4
5
 
5
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quickpub
3
- Version: 0.0.1
3
+ Version: 0.5.0
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
@@ -5,6 +5,7 @@ quickpub/__init__.py
5
5
  quickpub/__main__.py
6
6
  quickpub/classifiers.py
7
7
  quickpub/files.py
8
+ quickpub/proxy.py
8
9
  quickpub/publish.py
9
10
  quickpub/structures.py
10
11
  quickpub.egg-info/PKG-INFO
@@ -1,2 +0,0 @@
1
- from .__main__ import publish
2
- from .structures import *
File without changes
File without changes
File without changes
File without changes
File without changes