Skip to content

Commit 4d9bd06

Browse files
committed
Stage to go live on PyPI
1 parent 4e28436 commit 4d9bd06

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
# AltSourceParser
22

33
This package is designed to aid in creating and maintaining AltSources (for use primarily with AltStore) which are static json files containing various store-like and app metadata.
4+
5+
# Installation
6+
7+
``pip install altparse``
8+
9+
(or for TestPyPI)
10+
``pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ altparse``
11+
12+
# Usage
13+
14+
See [tests/example_update.py](https://github.com/noah978/AltSourceParser/blob/main/tests/example_update.py) for how to best utilize the AltSource updating functionality.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "altparse"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = [
55
{name = "Noah Keck", email="noahkeck@mindspring.com"}
66
]
@@ -15,10 +15,8 @@ classifiers = [
1515
]
1616
requires-python = ">=3.10"
1717
dependencies = [
18-
"requests",
19-
"zipfile",
20-
"plistlib",
21-
"github3"
18+
"requests>=2.28.0",
19+
"github3.py>=3.2.0"
2220
]
2321

2422
[project.urls]
@@ -32,3 +30,6 @@ requires = ["setuptools>=61.0", "setuptools-scm"]
3230
build-backend = "setuptools.build_meta"
3331

3432
[tool.setuptools]
33+
34+
[tool.setuptools.packages.find]
35+
where = ["src"]

0 commit comments

Comments
 (0)