Skip to content

phesSofthouse/python-package-template

Repository files navigation

python-package-template

forthebadge made-with-python

About

A template project to clone when creating a new python package.

You can find the latest, most up to date, documentation at our doc site.

Running Tests

You can run tests in all supported Python versions using tox. By default, it will run all of the unit tests, linters and coverage. Note that this requires that you have all supported versions of Python installed, otherwise you must pass -e.

$ tox
$ tox -e py37,py38

Requirements

Install requirements

Required dependencies:

pip install -r requirements/requirements.txt

Dev dependencies:

pip install -r requirements/dev.txt

Update requirements

If a dependency is to be added to the project, add it to the appropriate .in file and run:

pip-compile requirements/path-to-file.in

Sync local virtual environment with requirements

If you would like to sync your local virtual environment with the generated and locked requirements of the project, run:

pip-sync requirements/path-to-file.in requirements/another-file.in

Test suite

Run test suite locally

Navigate to the root of the project and run:

tox

Show list of commands

Show the list of tox commands available to run individually:

tox -a

Run tests

tox -e py37,py38,py39,py310

Run linters

tox -e lint

Run Coverage

tox -e cov

Build the project

tox -e build

Publish the project

Must have built the project prior to running this command.

Running the following command will by default publish the build to TestPyPi:

tox -e publish

If you want to release it to be publically accessible in PyPi, use:

tox -e publish -- --repository pypi

Pre-commit hooks

It is recommended that every developer working on this project activate pre-commit hooks.

Activate pre-commit hooks

pre-commit install

Documentation

Build documentation

tox -e build-docs

This will create a docs/_build/html folder with an index.html file that can be opened in a browser.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages