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.
@@ -0,0 +1,2 @@
1
+ include README.md
2
+ include requirements.txt
@@ -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,15 @@
1
+ # Pustil Client
2
+
3
+ Pustil terminal client for findlo.ir
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install pustil
9
+ ```
10
+
11
+ Usage
12
+
13
+ ```bash
14
+ pustil
15
+ ```
@@ -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,2 @@
1
+ [console_scripts]
2
+ pustil = pustil.client:main
@@ -0,0 +1,2 @@
1
+ python-socketio[client]
2
+ websocket-client
@@ -0,0 +1 @@
1
+ pustil
@@ -0,0 +1 @@
1
+ __version__ = "1.0.0"
@@ -0,0 +1,4 @@
1
+ from .client import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
File without changes
@@ -0,0 +1,3 @@
1
+
2
+ python-socketio[client]
3
+ websocket-client
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )