vappman 0.9.3__tar.gz → 0.9.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vappman
3
- Version: 0.9.3
3
+ Version: 0.9.4
4
4
  Summary: A visual wrapper for appman
5
5
  Keywords: app,installer,manager,appimages
6
6
  Author-email: Joe Defen <joedef@google.com>
@@ -11,7 +11,6 @@ Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: POSIX :: Linux
12
12
  License-File: LICENSE
13
13
  Requires-Dist: importlib-metadata; python_version<"3.8"
14
- Requires-Dist: psutil>=5.9
15
14
  Project-URL: Bug Tracker, https://github.com/joedefen/vappman/issues
16
15
  Project-URL: Homepage, https://github.com/joedefen/vappman
17
16
 
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "vappman"
7
- version = "0.9.3"
7
+ version = "0.9.4"
8
8
  description = "A visual wrapper for appman"
9
9
  authors = [
10
10
  { name = "Joe Defen", email = "joedef@google.com" }
@@ -20,7 +20,6 @@ classifiers = [
20
20
  ]
21
21
  dependencies = [
22
22
  'importlib-metadata; python_version<"3.8"',
23
- 'psutil>=5.9',
24
23
  ]
25
24
 
26
25
  [project.urls]
@@ -28,7 +27,4 @@ dependencies = [
28
27
  "Bug Tracker" = "https://github.com/joedefen/vappman/issues"
29
28
 
30
29
  [project.scripts]
31
- vappman = "vappman.main:main"
32
-
33
- [tool.flit.module]
34
- name = "vappman"
30
+ vappman = "vappman.main:main"
@@ -1,38 +0,0 @@
1
- # Vappman HOWTO Develop
2
-
3
- A visual wrapper for appman.
4
-
5
- ---
6
-
7
- ## How to Develop
8
-
9
- ### Prep Work
10
- Ensure necessary modules are up-to-date:
11
- - `sudo apt install python3-pip`
12
- - `sudo apt install python3-pip-whl`
13
- - `pip install build --break-system-packages`
14
- - `sudo apt install twine`
15
-
16
- Optionally, use a virtual environment:
17
- - `python3 -m venv venv`
18
- - `source venv/bin/activate` (to activate)
19
- - `deactivate` (to deactivate)
20
-
21
- ### Running the Project
22
- - To run with local changes: `rm -rf ./dist && python3 -m build && pip install -e . --break-system-packages`
23
- - Or simply: `python3 -m vappman.main`
24
- - Or from the source directory: `cd src/vappman && ./main.py`
25
-
26
- ---
27
-
28
- ## How to Publish
29
-
30
- ### Public Build and Deploy
31
- - **BUMP** the version in `pyproject.toml`.
32
- flit build && flit publish # Will prompt for your PyPI token if not cached
33
- - Install or upgrade: `pipx upgrade vappman` (for Python 3.11+) or `sudo python3 -m pip install vappman` (for Python 3.10 and below).
34
-
35
- ### Test Build and Deploy
36
- - **BUMP** the version in `pyproject.toml`.
37
- flit build && flit publish --repository testpypi
38
- + Install from TestPyPI: `sudo python3 -m pip install --upgrade --index-url https://test.pypi.org/simple/ --no-deps --break-system-packages vappman`
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes