firegex 3.4.1__tar.gz → 3.4.3__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.
Files changed (25) hide show
  1. {firegex-3.4.1/firegex.egg-info → firegex-3.4.3}/PKG-INFO +2 -2
  2. firegex-3.4.3/firegex/__init__.py +5 -0
  3. {firegex-3.4.1 → firegex-3.4.3/firegex.egg-info}/PKG-INFO +2 -2
  4. {firegex-3.4.1 → firegex-3.4.3}/requirements.txt +1 -1
  5. {firegex-3.4.1 → firegex-3.4.3}/setup.py +1 -1
  6. firegex-3.4.1/firegex/__init__.py +0 -5
  7. {firegex-3.4.1 → firegex-3.4.3}/MANIFEST.in +0 -0
  8. {firegex-3.4.1 → firegex-3.4.3}/README.md +0 -0
  9. {firegex-3.4.1 → firegex-3.4.3}/fgex +0 -0
  10. {firegex-3.4.1 → firegex-3.4.3}/firegex/__main__.py +0 -0
  11. {firegex-3.4.1 → firegex-3.4.3}/firegex/cli.py +0 -0
  12. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/__init__.py +0 -0
  13. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/internals/__init__.py +0 -0
  14. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/internals/data.py +0 -0
  15. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/internals/exceptions.py +0 -0
  16. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/internals/models.py +0 -0
  17. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/models/__init__.py +0 -0
  18. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/models/http.py +0 -0
  19. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/models/tcp.py +0 -0
  20. {firegex-3.4.1 → firegex-3.4.3}/firegex/nfproxy/proxysim/__init__.py +0 -0
  21. {firegex-3.4.1 → firegex-3.4.3}/firegex.egg-info/SOURCES.txt +0 -0
  22. {firegex-3.4.1 → firegex-3.4.3}/firegex.egg-info/dependency_links.txt +0 -0
  23. {firegex-3.4.1 → firegex-3.4.3}/firegex.egg-info/requires.txt +1 -1
  24. {firegex-3.4.1 → firegex-3.4.3}/firegex.egg-info/top_level.txt +0 -0
  25. {firegex-3.4.1 → firegex-3.4.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: firegex
3
- Version: 3.4.1
3
+ Version: 3.4.3
4
4
  Summary: Firegex client
5
5
  Home-page: https://github.com/pwnzer0tt1/firegex
6
6
  Author: Pwnzer0tt1
@@ -15,10 +15,10 @@ Requires-Dist: pydantic>=2
15
15
  Requires-Dist: typing-extensions>=4.7.1
16
16
  Requires-Dist: pycryptodome
17
17
  Requires-Dist: zstd
18
- Requires-Dist: brotli
19
18
  Requires-Dist: watchfiles
20
19
  Requires-Dist: fgex
21
20
  Requires-Dist: websockets
21
+ Requires-Dist: brotli
22
22
  Requires-Dist: pyllhttp
23
23
  Dynamic: author
24
24
  Dynamic: author-email
@@ -0,0 +1,5 @@
1
+
2
+ __version__ = "3.4.3" if "{" not in "3.4.3" else "0.0.0"
3
+
4
+ #Exported functions
5
+ __all__ = []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: firegex
3
- Version: 3.4.1
3
+ Version: 3.4.3
4
4
  Summary: Firegex client
5
5
  Home-page: https://github.com/pwnzer0tt1/firegex
6
6
  Author: Pwnzer0tt1
@@ -15,10 +15,10 @@ Requires-Dist: pydantic>=2
15
15
  Requires-Dist: typing-extensions>=4.7.1
16
16
  Requires-Dist: pycryptodome
17
17
  Requires-Dist: zstd
18
- Requires-Dist: brotli
19
18
  Requires-Dist: watchfiles
20
19
  Requires-Dist: fgex
21
20
  Requires-Dist: websockets
21
+ Requires-Dist: brotli
22
22
  Requires-Dist: pyllhttp
23
23
  Dynamic: author
24
24
  Dynamic: author-email
@@ -3,8 +3,8 @@ pydantic>=2
3
3
  typing-extensions>=4.7.1
4
4
  pycryptodome
5
5
  zstd
6
- brotli # waiting for pull request to be merged
7
6
  watchfiles
8
7
  fgex
9
8
  websockets
9
+ brotli
10
10
  pyllhttp
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
6
6
  with open('requirements.txt', 'r', encoding='utf-8') as f:
7
7
  required = [ele.strip() for ele in f.read().splitlines() if not ele.strip().startswith("#") and ele.strip() != ""]
8
8
 
9
- VERSION = "3.4.1"
9
+ VERSION = "3.4.3"
10
10
 
11
11
  setuptools.setup(
12
12
  name="firegex",
@@ -1,5 +0,0 @@
1
-
2
- __version__ = "3.4.1" if "{" not in "3.4.1" else "0.0.0"
3
-
4
- #Exported functions
5
- __all__ = []
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -3,8 +3,8 @@ pydantic>=2
3
3
  typing-extensions>=4.7.1
4
4
  pycryptodome
5
5
  zstd
6
- brotli
7
6
  watchfiles
8
7
  fgex
9
8
  websockets
9
+ brotli
10
10
  pyllhttp
File without changes