Coder Social home page Coder Social logo

wagtail-package-template's Introduction

Wagtail PYPI Template

A good starting point for a wagtail pypi package.

Replace yourapp in these files with what you intend to build

Circle ci config example is added, once it fully configured add a badge to the readme to indicate passing:

[![CircleCI](https://circleci.com/gh/yourname/yourapp.svg?style=shield&circle)](https://circleci.com/gh/yourname/yourapp)

Tests and coverage

The ci will run coverage and upload a report to http://codecov.io/ if you configure the token in circle/config.yml or .github/workflows/main.yml

Add a github secret for your coverage token secrets.CODE_COV_KEY

Publishing to PYPI

To package your app for pypi you will need twine:

pip install twine

Then run the following:

python setup.py sdist bdist_wheel

You should now have a dist/ directory:

twine check dist/*

Watch out for:

Checking distribution dist/PACKAGE-NAME-VERSION.tar.gz: warning: `long_description_content_type` missing.  defaulting to `text/x-rst`.
Failed

The project's long_description has invalid markup which will not be rendered on PyPI. The following syntax errors were detected:
line 18: Warning: Inline literal start-string without end-string.

That's ok. twine has an issue with markdown

Get an account on https://test.pypi.org and https://pypi.org

Then run

twine upload --repository-url https://test.pypi.org/legacy/ dist/* * to safely check your package twine upload dist/* -- when ready to publish

or

twine upload dist/*

๐ŸŽ‰

wagtail-package-template's People

Contributors

kevinhowbrook avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

wagtail-package-template's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.