firegex 0.0.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.
@@ -0,0 +1 @@
1
+ include requirements.txt
firegex-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.2
2
+ Name: firegex
3
+ Version: 0.0.0
4
+ Summary: Firegex client
5
+ Home-page: https://github.com/pwnzer0tt1/firegex
6
+ Author: Pwnzer0tt1
7
+ Author-email: pwnzer0tt1@poliba.it
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: typer==0.12.3
14
+ Requires-Dist: requests>=2.32.3
15
+ Requires-Dist: python-dateutil==2.9.0.post0
16
+ Requires-Dist: pydantic>=2
17
+ Requires-Dist: typing-extensions>=4.7.1
18
+ Requires-Dist: textual==0.89.1
19
+ Requires-Dist: toml==0.10.2
20
+ Requires-Dist: psutil==6.0.0
21
+ Requires-Dist: dirhash==0.5.0
22
+ Requires-Dist: requests-toolbelt==1.0.0
23
+ Requires-Dist: python-socketio[client]==5.11.4
24
+ Requires-Dist: orjson
25
+ Dynamic: author
26
+ Dynamic: author-email
27
+ Dynamic: classifier
28
+ Dynamic: description
29
+ Dynamic: description-content-type
30
+ Dynamic: home-page
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ # Firegex Python Library and CLI
36
+
37
+ It's a work in progress!
@@ -0,0 +1,3 @@
1
+ # Firegex Python Library and CLI
2
+
3
+ It's a work in progress!
firegex-0.0.0/fgex ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env python3
2
+
3
+ # TODO implement cli start function
4
+ from firegex.cli import run
5
+
6
+ if __name__ == "__main__":
7
+ run()
@@ -0,0 +1,7 @@
1
+
2
+ __version__ = "{{VERSION_PLACEHOLDER}}" if "{" not in "{{VERSION_PLACEHOLDER}}" else "0.0.0"
3
+
4
+ #Exported functions
5
+ __all__ = [
6
+
7
+ ]
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env python3
2
+
3
+ # TODO implement cli start function
4
+ from firegexproxy.cli import run
5
+
6
+ if __name__ == "__main__":
7
+ run()
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.2
2
+ Name: firegex
3
+ Version: 0.0.0
4
+ Summary: Firegex client
5
+ Home-page: https://github.com/pwnzer0tt1/firegex
6
+ Author: Pwnzer0tt1
7
+ Author-email: pwnzer0tt1@poliba.it
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: typer==0.12.3
14
+ Requires-Dist: requests>=2.32.3
15
+ Requires-Dist: python-dateutil==2.9.0.post0
16
+ Requires-Dist: pydantic>=2
17
+ Requires-Dist: typing-extensions>=4.7.1
18
+ Requires-Dist: textual==0.89.1
19
+ Requires-Dist: toml==0.10.2
20
+ Requires-Dist: psutil==6.0.0
21
+ Requires-Dist: dirhash==0.5.0
22
+ Requires-Dist: requests-toolbelt==1.0.0
23
+ Requires-Dist: python-socketio[client]==5.11.4
24
+ Requires-Dist: orjson
25
+ Dynamic: author
26
+ Dynamic: author-email
27
+ Dynamic: classifier
28
+ Dynamic: description
29
+ Dynamic: description-content-type
30
+ Dynamic: home-page
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ # Firegex Python Library and CLI
36
+
37
+ It's a work in progress!
@@ -0,0 +1,12 @@
1
+ MANIFEST.in
2
+ README.md
3
+ fgex
4
+ requirements.txt
5
+ setup.py
6
+ firegex/__init__.py
7
+ firegex/__main__.py
8
+ firegex.egg-info/PKG-INFO
9
+ firegex.egg-info/SOURCES.txt
10
+ firegex.egg-info/dependency_links.txt
11
+ firegex.egg-info/requires.txt
12
+ firegex.egg-info/top_level.txt
@@ -0,0 +1,12 @@
1
+ typer==0.12.3
2
+ requests>=2.32.3
3
+ python-dateutil==2.9.0.post0
4
+ pydantic>=2
5
+ typing-extensions>=4.7.1
6
+ textual==0.89.1
7
+ toml==0.10.2
8
+ psutil==6.0.0
9
+ dirhash==0.5.0
10
+ requests-toolbelt==1.0.0
11
+ python-socketio[client]==5.11.4
12
+ orjson
@@ -0,0 +1,2 @@
1
+ fgex
2
+ firegex
@@ -0,0 +1,14 @@
1
+ typer==0.12.3
2
+ requests>=2.32.3
3
+ python-dateutil==2.9.0.post0
4
+ pydantic >= 2
5
+ typing-extensions >= 4.7.1
6
+ textual==0.89.1
7
+ toml==0.10.2
8
+ psutil==6.0.0
9
+ dirhash==0.5.0
10
+ requests-toolbelt==1.0.0
11
+ python-socketio[client]==5.11.4
12
+ orjson
13
+
14
+ # TODO choose dependencies
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
firegex-0.0.0/setup.py ADDED
@@ -0,0 +1,31 @@
1
+ import setuptools
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ with open('requirements.txt', 'r', encoding='utf-8') as f:
7
+ required = [ele.strip() for ele in f.read().splitlines() if not ele.strip().startswith("#") and ele.strip() != ""]
8
+
9
+ VERSION = "{{VERSION_PLACEHOLDER}}"
10
+
11
+ setuptools.setup(
12
+ name="firegex",
13
+ version= VERSION if "{" not in VERSION else "0.0.0", #uv pip install -U . --no-cache-dir for testing
14
+ author="Pwnzer0tt1",
15
+ author_email="pwnzer0tt1@poliba.it",
16
+ scripts=["fgex"],
17
+ py_modules=["fgex"],
18
+ install_requires=required,
19
+ include_package_data=True,
20
+ description="Firegex client",
21
+ long_description=long_description,
22
+ long_description_content_type="text/markdown",
23
+ url="https://github.com/pwnzer0tt1/firegex",
24
+ packages=setuptools.find_packages(),
25
+ classifiers=[
26
+ "Programming Language :: Python :: 3",
27
+ "License :: OSI Approved :: GNU Affero General Public License v3",
28
+ "Operating System :: OS Independent",
29
+ ],
30
+ python_requires='>=3.10',
31
+ )