curlify3 0.1__tar.gz → 0.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.
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: curlify3
3
- Version: 0.1
4
- Summary: yet another python Request objects curlificator
3
+ Version: 0.2
4
+ Summary: yet another library to convert request object to curl command
5
+ Home-page: https://github.com/shpaker/curlify3
5
6
  Author: A.Shpak
6
7
  Author-email: aleksander.shpak.als@gmail.com
7
8
  Requires-Python: >=3.9,<4.0
@@ -11,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.10
11
12
  Classifier: Programming Language :: Python :: 3.11
12
13
  Classifier: Programming Language :: Python :: 3.12
13
14
  Classifier: Programming Language :: Python :: 3.13
15
+ Project-URL: Repository, https://github.com/shpaker/curlify3
14
16
  Description-Content-Type: text/markdown
15
17
 
16
18
  # yet another library to convert request object to curl command
@@ -1,6 +1,6 @@
1
1
  from curlify3._curl import to_curl, to_curl_async
2
2
 
3
- __version__ = "0.1"
3
+ __version__ = "0.2"
4
4
  __all__ = [
5
5
  "to_curl",
6
6
  "to_curl_async",
@@ -1,9 +1,10 @@
1
1
  [tool.poetry]
2
2
  name = "curlify3"
3
- version = "0.1"
4
- description = "yet another python Request objects curlificator"
3
+ version = "0.2"
4
+ description = "yet another library to convert request object to curl command"
5
5
  authors = ["A.Shpak <aleksander.shpak.als@gmail.com>"]
6
6
  readme = "README.md"
7
+ repository = "https://github.com/shpaker/curlify3"
7
8
 
8
9
  [tool.poetry.dependencies]
9
10
  python = ">=3.9,<4.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes