Metadata-Version: 2.1
Name: quiltplus
Version: 0.5.3
Summary: Resource-oriented Python API for Quilt's decentralized social knowledge platform
License: MIT
Keywords: yaml,api,resource,quilt
Author: Ernest Prabhakar
Author-email: ernest@quiltdata.io
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: quilt3 (>=5.1.0,<6.0.0)
Requires-Dist: trio (>=0.22.0,<0.23.0)
Description-Content-Type: text/markdown

# quiltplus
Resource-oriented API for Quilt's decentralized social knowledge platform

As of v0.4.0 all Resources are fetched sing the [trio](https://trio.readthedocs.io/en/stable/) version of `async`

# Developmment
## Setup

```
git clone https://github.com/quiltdata/quiltplus
cd quiltplus
poetry self update
poetry install
poetry run pytest-watch
```
## Pushing Changes
Be sure you to first set your [API token](https://pypi.org/manage/account/) using `poetry config pypi-token.pypi <pypi-api-token>`
```
# merge PR
poetry version patch # minor major
poetry build
poetry publish
# create new branch
poetry version prepatch # preminor premajor
```

