firegex 0.0.0__tar.gz → 2.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.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: firegex
3
- Version: 0.0.0
3
+ Version: 2.5.2
4
4
  Summary: Firegex client
5
5
  Home-page: https://github.com/pwnzer0tt1/firegex
6
6
  Author: Pwnzer0tt1
7
7
  Author-email: pwnzer0tt1@poliba.it
8
8
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
@@ -0,0 +1,7 @@
1
+
2
+ __version__ = "2.5.2" if "{" not in "2.5.2" else "0.0.0"
3
+
4
+ #Exported functions
5
+ __all__ = [
6
+
7
+ ]
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python3
2
2
 
3
3
  # TODO implement cli start function
4
- from firegexproxy.cli import run
4
+ from firegex.cli import run
5
5
 
6
6
  if __name__ == "__main__":
7
7
  run()
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: firegex
3
- Version: 0.0.0
3
+ Version: 2.5.2
4
4
  Summary: Firegex client
5
5
  Home-page: https://github.com/pwnzer0tt1/firegex
6
6
  Author: Pwnzer0tt1
7
7
  Author-email: pwnzer0tt1@poliba.it
8
8
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
@@ -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 = "{{VERSION_PLACEHOLDER}}"
9
+ VERSION = "2.5.2"
10
10
 
11
11
  setuptools.setup(
12
12
  name="firegex",
@@ -24,7 +24,7 @@ setuptools.setup(
24
24
  packages=setuptools.find_packages(),
25
25
  classifiers=[
26
26
  "Programming Language :: Python :: 3",
27
- "License :: OSI Approved :: GNU Affero General Public License v3",
27
+ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
28
28
  "Operating System :: OS Independent",
29
29
  ],
30
30
  python_requires='>=3.10',
@@ -1,7 +0,0 @@
1
-
2
- __version__ = "{{VERSION_PLACEHOLDER}}" if "{" not in "{{VERSION_PLACEHOLDER}}" else "0.0.0"
3
-
4
- #Exported functions
5
- __all__ = [
6
-
7
- ]
File without changes
File without changes
File without changes
File without changes
File without changes