-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d8037c
commit cda92ad
Showing
1 changed file
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Metadata-Version: 2.1 | ||
Name: dearpygui-task-list | ||
Version: 4.0.0 | ||
Version: 4.0.1 | ||
Summary: A task list application, written in Python3 using the dearpygui library | ||
Author-email: Myles Bartlett <[email protected]> | ||
Project-URL: Homepage, https://github.com/mylesbartlett72/Python-Task-List | ||
|
@@ -16,6 +16,33 @@ License-File: LICENSE | |
|
||
A task list application, written in Python3 using the dearpygui library | ||
|
||
## Installing as a binary (PyPI) | ||
|
||
NOTE: While binary packages should work, the dependency management has not been tested! Please file an issue report if you encounter problems. | ||
|
||
Run | ||
```shell | ||
spam@eggs:~$ pip3 install dearpygui-task-list | ||
``` | ||
NOTE: You may need to substitute `pip3` for `pip` on Windows-based systems. To use a specific version of python from your system: `/path/to/your/python -m pip` can be used instead of `pip3` | ||
|
||
## Installing as a binary (downloaded) | ||
|
||
NOTE: While binary packages should work, the dependency management has not been tested! Please file an issue report if you encounter problems. | ||
|
||
Run | ||
```shell | ||
spam@eggs:~$ pip3 install /path/to/the/downloaded/wheel.whl | ||
``` | ||
NOTE: You may need to substitute `pip3` for `pip` on Windows-based systems. To use a specific version of python from your system: `/path/to/your/python -m pip` can be used instead of `pip3` | ||
|
||
### To start (installation as a binary) (any binary source) | ||
Run | ||
```shell | ||
spam@eggs:~$ /path/to/your/python -m task_list | ||
``` | ||
.tasks.json will be searched for and written to the current working directory. | ||
|
||
## Installation from source | ||
|
||
It is suggested that a virtual environment is used, although this is not required. | ||
|
@@ -26,7 +53,7 @@ spam@eggs:~$ pip3 install -r /path/to/the/cloned/repository/requirements.txt | |
``` | ||
NOTE: You may need to substitute `pip3` for `pip` on Windows-based systems. To use a specific version of python from your system: `/path/to/your/python -m pip` can be used instead of `pip3` | ||
|
||
## To start | ||
### To start (installation from source) | ||
Run | ||
```shell | ||
spam@eggs:~$ cd /path/to/the/cloned/repository | ||
|
@@ -35,7 +62,7 @@ spam@eggs:~$ /path/to/your/python src/task_list/__main__.py | |
|
||
In this case, data is stored in .tasks.json in the root of the cloned repository. .tasks.json will be searched for and written to the current working directory. | ||
|
||
## Building packages | ||
## Building packages from source | ||
Run | ||
```shell | ||
spam@eggs:~$ cd /path/to/the/cloned/repository | ||
|