pStar-cli 1.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.
- pstar_cli-1.0.0/MANIFEST.in +2 -0
- pstar_cli-1.0.0/PKG-INFO +39 -0
- pstar_cli-1.0.0/README.md +15 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/PKG-INFO +39 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/SOURCES.txt +13 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/dependency_links.txt +1 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/entry_points.txt +2 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/requires.txt +2 -0
- pstar_cli-1.0.0/pStar_cli.egg-info/top_level.txt +1 -0
- pstar_cli-1.0.0/pustil/__init__.py +1 -0
- pstar_cli-1.0.0/pustil/__main__.py +4 -0
- pstar_cli-1.0.0/pustil/client.py +0 -0
- pstar_cli-1.0.0/requirements.txt +3 -0
- pstar_cli-1.0.0/setup.cfg +4 -0
- pstar_cli-1.0.0/setup.py +31 -0
pstar_cli-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pStar-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Pustil terminal client for findlo.ir
|
|
5
|
+
Home-page: https://github.com/Findlo/pustil
|
|
6
|
+
Author: Eliot Sterling
|
|
7
|
+
Author-email: itseliot0x@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: python-socketio[client]
|
|
14
|
+
Requires-Dist: websocket-client
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: author-email
|
|
17
|
+
Dynamic: classifier
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
# Pustil Client
|
|
26
|
+
|
|
27
|
+
Pustil terminal client for findlo.ir
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install pustil
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Usage
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pustil
|
|
39
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pStar-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Pustil terminal client for findlo.ir
|
|
5
|
+
Home-page: https://github.com/Findlo/pustil
|
|
6
|
+
Author: Eliot Sterling
|
|
7
|
+
Author-email: itseliot0x@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: python-socketio[client]
|
|
14
|
+
Requires-Dist: websocket-client
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: author-email
|
|
17
|
+
Dynamic: classifier
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
# Pustil Client
|
|
26
|
+
|
|
27
|
+
Pustil terminal client for findlo.ir
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install pustil
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Usage
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pustil
|
|
39
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.md
|
|
3
|
+
requirements.txt
|
|
4
|
+
setup.py
|
|
5
|
+
pStar_cli.egg-info/PKG-INFO
|
|
6
|
+
pStar_cli.egg-info/SOURCES.txt
|
|
7
|
+
pStar_cli.egg-info/dependency_links.txt
|
|
8
|
+
pStar_cli.egg-info/entry_points.txt
|
|
9
|
+
pStar_cli.egg-info/requires.txt
|
|
10
|
+
pStar_cli.egg-info/top_level.txt
|
|
11
|
+
pustil/__init__.py
|
|
12
|
+
pustil/__main__.py
|
|
13
|
+
pustil/client.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pustil
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|
|
File without changes
|
pstar_cli-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="pStar-cli",
|
|
8
|
+
version="1.0.0",
|
|
9
|
+
author="Eliot Sterling",
|
|
10
|
+
author_email="itseliot0x@gmail.com",
|
|
11
|
+
description="Pustil terminal client for findlo.ir",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/Findlo/pustil",
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
classifiers=[
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
],
|
|
21
|
+
python_requires=">=3.6",
|
|
22
|
+
install_requires=[
|
|
23
|
+
"python-socketio[client]",
|
|
24
|
+
"websocket-client"
|
|
25
|
+
],
|
|
26
|
+
entry_points={
|
|
27
|
+
"console_scripts": [
|
|
28
|
+
"pustil = pustil.client:main",
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
)
|