Metadata-Version: 2.1
Name: xdg-binary-cache
Version: 1.5
Summary: A library for downloading pre-compiled binaries to XDG_CACHE
Home-page: https://github.com/EliRibble/xdg-binary-cache
Author: Eli Ribble
Author-email: eliribble@google.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: develop
Requires-Dist: mypy ; extra == 'develop'
Requires-Dist: nose2 ; extra == 'develop'
Requires-Dist: pylint ; extra == 'develop'
Requires-Dist: twine ; extra == 'develop'
Requires-Dist: wheel ; extra == 'develop'

# xdg-binary-cache

This is a simple library that is used to download a pre-compiled binary
into the `$XDG_CACHE` directory. The library is meant to be used by
[pre-commit](https://pre-commit.com) hooks that I've authored.

## Hacking

You'll want to install the developer dependencies:

```
pip install -e .[develop]
```

This will include `nose2` which is the test runner of choice. After you make modifications you can run tests with

```
nose2
```

When you're satisfied you'll want to update the version number and do build-and-upload:

```
python setup.py sdist bdist_wheel
twine upload dist/* --verbose
```


