Metadata-Version: 2.1
Name: vanilla-pkg
Version: 0.1
Summary: A small example package
Home-page: https://github.com/pypa/sampleproject
Author: Noah Spahn
Author-email: noah.spahn@ucsb.edu
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Feralo/vanilla_pkg/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Vanilla package
[![Build Status](https://travis-ci.org/Feralo/vanilla_pkg.svg?branch=master)](https://travis-ci.org/Feralo/vanilla_pkg)
[![Coverage Status](https://coveralls.io/repos/github/Feralo/vanilla_pkg/badge.svg?branch=master)](https://coveralls.io/github/Feralo/vanilla_pkg?branch=master)

## PyPI
This is a simple class which takes borrows heavily from the examples in [the docs](https://docs.python.org/3/tutorial/classes.html) package, built process outlined [python's](https://python.org) official [packaging project tutorial](https://packaging.python.org/tutorials/packaging-projects/).

## Testing
Unit tests reside in the **test** subdirectory of the vanilla_pkg directory. 

Tests can be run with:
     `pytest -v --cov=vanilla_pkg`
     
## Anaconda package
After [building a conda package](https://github.com/conda/conda-build#building-your-own-packages), it can be published by following the [user guide for uploading packages](http://docs.anaconda.com/anaconda-cloud/user-guide/tasks/work-with-packages/#uploading-packages). 
The user guide refers to a meta.yaml file but provides no examples. Fortunately, there is an [example package in the conda demo](https://github.com/Anaconda-Platform/anaconda-client).


