An open API service indexing awesome lists of open source software.

https://github.com/narrativescience-old/python-package-template

Template repository for a publishable Python package
https://github.com/narrativescience-old/python-package-template

Last synced: 7 months ago
JSON representation

Template repository for a publishable Python package

Awesome Lists containing this project

README

          

# mypackagename

[![](https://img.shields.io/pypi/v/mypackagename.svg)](https://pypi.org/pypi/mypackagename/) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

Features:

-

Table of Contents:

- [Installation](#installation)
- [Guide](#guide)
- [Development](#development)

## Installation

mypackagename requires Python 3.6 or above.

```bash
pip install mypackagename
```

## Guide

## Development

To develop mypackagename, install dependencies and enable the pre-commit hook:

```bash
pip install pre-commit poetry
poetry install
pre-commit install
```

To run tests:

```bash
poetry run pytest
```