pyhw 0.1.0b0__py3-none-any.whl → 0.1.1b0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyhw
3
- Version: 0.1.0b0
3
+ Version: 0.1.1b0
4
4
  Summary: PyHw, a neofetch-like command line tool for fetching system information but written mostly in python.
5
5
  Home-page: https://github.com/xiaoran007/pyhw
6
6
  Author: Xiao Ran
@@ -15,27 +15,32 @@ Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
 
17
17
  # PyHw
18
- PyHw, a neofetch-like command line tool for fetching system information but written mostly in python. Currently, Linux and macOS are supported.
18
+ PyHw, a neofetch-like command line tool for fetching system information but written mostly in Python. Currently, this project is still in the initial stage, only part of the linux systems are supported. macOS support will be added soon.
19
19
 
20
- This project is a python reimplementation of [neofetch](https://github.com/dylanaraps/neofetch) and references the [fastfetch](https://github.com/fastfetch-cli/fastfetch) project for logo style settings. Since this project is implemented in python, it will be faster than neofetch's shell implementation and easier to maintain and extend than fastfetch's c implementation. Also, this project only relies on the python standard library, so you can run it on any device that has a python environment (I hope so 🤔)
20
+ This project is a Python reimplementation of [neofetch](https://github.com/dylanaraps/neofetch) and references the [fastfetch](https://github.com/fastfetch-cli/fastfetch) project for logo style settings. Since this project is implemented in Python, it will be easier to maintain and extend than bash and c implementation. Also, this project only relies on the Python standard library, so you can run it on any device that has a Python environment (I hope so 🤔)
21
21
 
22
- There are already a lot of similar tools, so you can choose any one of them; they're all essentially no different. If you want to try this tool, just install it directly by pip.
22
+ There are already a lot of similar tools so you can choose any of them; they're all essentially no different. If you want to try this tool, just install it directly by pip.
23
23
  ```shell
24
24
  pip install pyhw
25
25
  ```
26
+ You can then use this tool directly from the command line with the following command, just like neofetch.
27
+ ```shell
28
+ pyhw
29
+ ```
26
30
 
27
31
  ## Build from source
28
32
  ### Build tools
29
- Make sure the following python build tools already installed.
33
+ Make sure the following Python build tools are already installed.
30
34
  * setuptools
31
35
  * build
36
+ * twine
32
37
 
33
38
  ### Build package
34
39
  clone the project, and run:
35
40
  ```shell
36
41
  python -m build
37
42
  ```
38
- or you can use old setup.py style command:
43
+ or you can use the old setup.py style command:
39
44
  ```shell
40
45
  python setup.py sdist bdist_wheel
41
46
  ```
@@ -53,9 +53,9 @@ pyhw/pyhwException/__init__.py,sha256=8JsFvtF13g0Y5t4z9fRndDXtfCzuBM59jDf6PhWSFS
53
53
  pyhw/pyhwException/pyhwException.py,sha256=wxuzFQa9g7XB1q9TUKO_55lw7wMEJMpzG8w1GVTFVa0,197
54
54
  pyhw/pyhwUtil/__init__.py,sha256=fwte3EqHROgcgxFKpf0XgMjpEIhXs7EvCQlC76YJ448,107
55
55
  pyhw/pyhwUtil/pyhwUtil.py,sha256=hRWYjTzU_Hyuz8TDHD9Tr2wd0v-j2je6FKYR6gNfrF0,1141
56
- pyhw-0.1.0b0.dist-info/LICENSE,sha256=hJs6RBqSVCexbTsalkMLNFI5t06kekQEsSVaOt_-yLs,1497
57
- pyhw-0.1.0b0.dist-info/METADATA,sha256=FgOIJkTHxBZlufWm6yTDSCNaL1HjpmgoAUEIZWtfoFk,1851
58
- pyhw-0.1.0b0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
59
- pyhw-0.1.0b0.dist-info/entry_points.txt,sha256=q-AB8im_QahpmNrmy4aPTJRGi0LlbNlnI3kF7s6pKss,44
60
- pyhw-0.1.0b0.dist-info/top_level.txt,sha256=7Inxvxt1TngEricKZEex9_WJZS3DbKYFUXDz4v5WHYU,5
61
- pyhw-0.1.0b0.dist-info/RECORD,,
56
+ pyhw-0.1.1b0.dist-info/LICENSE,sha256=hJs6RBqSVCexbTsalkMLNFI5t06kekQEsSVaOt_-yLs,1497
57
+ pyhw-0.1.1b0.dist-info/METADATA,sha256=E1PVWi3s82Gna91M2oq4IIatUfR3WSKYrjkra1kWkuE,2028
58
+ pyhw-0.1.1b0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
59
+ pyhw-0.1.1b0.dist-info/entry_points.txt,sha256=q-AB8im_QahpmNrmy4aPTJRGi0LlbNlnI3kF7s6pKss,44
60
+ pyhw-0.1.1b0.dist-info/top_level.txt,sha256=7Inxvxt1TngEricKZEex9_WJZS3DbKYFUXDz4v5WHYU,5
61
+ pyhw-0.1.1b0.dist-info/RECORD,,
File without changes