Skip to content

Commit e272263

Browse files
committed
try to fix ci
1 parent 18cb941 commit e272263

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Deppth2 is a high-level I/O interface for package files in the games Transistor,
55

66
## Installation
77

8-
To install Deppth2, download the latest [wheel](https://github.com/SGG-Modding/deppth/releases) and `pip install` it. Then read the following instructions to install dependencies.
8+
To install Deppth2, `pip install deppth2` or download the latest [wheel](https://github.com/SGG-Modding/deppth/releases) and `pip install` it. Then read the following instructions to install dependencies.
99

1010
### Dependencies
1111

@@ -44,11 +44,12 @@ This will replace any entries in the package with any matching entries in the pa
4444
## Deppth2 API
4545

4646
The Deppth2 module exposes functions that perform the actions described above, plus a fourth (which is also part of the CLI) to list the contents of a package. It's basically just a programmer interface for the same things the CLI does -- the latter is just a wrapper for the former.
47-
47+
```py
4848
list(name, *patterns, logger=lambda s: None)
4949
extract(package, target_dir, *entries, subtextures=False, logger=lambda s: None)
5050
pack(source_dir, package, *entries, logger=lambda s: None)
5151
patch(name, *patches, logger=lambda s : None)
52+
```
5253

5354
The logger kwarg allows for customization of output of these functions -- for example, you may want to write to a file instead of print to screen.
5455

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
},
3030
description = "Decompress, Extract, and Pack for Pyre, Transistor, Hades, and Hades 2",
3131
long_description = long_descr,
32+
long_description_content_type='text/markdown',
3233
author = "SGG Modding",
3334
author_email = "xiaoxiao921@hotmail.fr",
3435
url = "",

0 commit comments

Comments
 (0)