fgex 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.
- fgex-0.0.0/PKG-INFO +28 -0
- fgex-0.0.0/README.md +5 -0
- fgex-0.0.0/fgex/__init__.py +1 -0
- fgex-0.0.0/fgex/__main__.py +6 -0
- fgex-0.0.0/fgex.egg-info/PKG-INFO +28 -0
- fgex-0.0.0/fgex.egg-info/SOURCES.txt +9 -0
- fgex-0.0.0/fgex.egg-info/dependency_links.txt +1 -0
- fgex-0.0.0/fgex.egg-info/requires.txt +1 -0
- fgex-0.0.0/fgex.egg-info/top_level.txt +1 -0
- fgex-0.0.0/setup.cfg +4 -0
- fgex-0.0.0/setup.py +25 -0
fgex-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: fgex
|
|
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 General Public License v3 or later (GPLv3+)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: fgex
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: description-content-type
|
|
19
|
+
Dynamic: home-page
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# Firegex python library
|
|
25
|
+
|
|
26
|
+
Alias of 'firegex' libaray
|
|
27
|
+
|
|
28
|
+
It's a work in progress!
|
fgex-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from firegex import *
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: fgex
|
|
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 General Public License v3 or later (GPLv3+)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: fgex
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: description-content-type
|
|
19
|
+
Dynamic: home-page
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# Firegex python library
|
|
25
|
+
|
|
26
|
+
Alias of 'firegex' libaray
|
|
27
|
+
|
|
28
|
+
It's a work in progress!
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fgex
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fgex
|
fgex-0.0.0/setup.cfg
ADDED
fgex-0.0.0/setup.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setuptools.setup(
|
|
7
|
+
name="fgex",
|
|
8
|
+
version="0.0.0",
|
|
9
|
+
author="Pwnzer0tt1",
|
|
10
|
+
author_email="pwnzer0tt1@poliba.it",
|
|
11
|
+
py_modules=["fgex"],
|
|
12
|
+
install_requires=["fgex"],
|
|
13
|
+
include_package_data=True,
|
|
14
|
+
description="Firegex client",
|
|
15
|
+
long_description=long_description,
|
|
16
|
+
long_description_content_type="text/markdown",
|
|
17
|
+
url="https://github.com/pwnzer0tt1/firegex",
|
|
18
|
+
packages=setuptools.find_packages(),
|
|
19
|
+
classifiers=[
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
],
|
|
24
|
+
python_requires='>=3.10',
|
|
25
|
+
)
|