pStar-cli 1.0.0__py3-none-any.whl

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,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,8 @@
1
+ pustil/__init__.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
2
+ pustil/__main__.py,sha256=TD0nSRKG62KtjhqVqWXk-wc7pKG7lZmIxG5KIFu8xIc,64
3
+ pustil/client.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pstar_cli-1.0.0.dist-info/METADATA,sha256=T-ZdWMhe-PdEAPCxzi1b8NYdYHhDPRRFpZI3VzowaMY,809
5
+ pstar_cli-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ pstar_cli-1.0.0.dist-info/entry_points.txt,sha256=p-ZvU7dqGl3qNmce6T2S_KNsm_hfzMQiu2Pu8F2gJAk,46
7
+ pstar_cli-1.0.0.dist-info/top_level.txt,sha256=xdua4Lt4K1rbVkNjyg3nfryv1nzO0XycDVdntra65yA,7
8
+ pstar_cli-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pustil = pustil.client:main
@@ -0,0 +1 @@
1
+ pustil
pustil/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "1.0.0"
pustil/__main__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .client import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
pustil/client.py ADDED
File without changes