All Projects → pyscaffold → Pyscaffold

pyscaffold / Pyscaffold

Licence: mit
🛠 Python project template generator with batteries included

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyscaffold

action
📦📊 GitHub Action to reports on the size of your npm package
Stars: ✭ 36 (-96.48%)
Mutual labels:  distribution, package
Rabbit
⚡️ A lightweight service that will build and store your go projects binaries, Integrated with Github, Gitlab, Bitbucket and Bitbucket Server.
Stars: ✭ 185 (-81.9%)
Mutual labels:  package, release-automation
Semantic Release
📦🚀 Fully automated version management and package publishing
Stars: ✭ 14,364 (+1305.48%)
Mutual labels:  package, release-automation
Goreleaser
Deliver Go binaries as fast and easily as possible
Stars: ✭ 9,290 (+809%)
Mutual labels:  package, release-automation
Flutter platform widgets
Target the specific design of Material for Android and Cupertino for iOS widgets through a common set of Platform aware widgets
Stars: ✭ 962 (-5.87%)
Mutual labels:  package
Laravel Tabler
Laravel Package for integrating Tabler template and this package is Laravel Mix friendly.
Stars: ✭ 20 (-98.04%)
Mutual labels:  package
Atom Annotations
Atom package that shows annotations (e.g. for overriden methods interface implementations) in your PHP source code.
Stars: ✭ 14 (-98.63%)
Mutual labels:  package
Swipeformore
Manage Cydia packages via swipe.
Stars: ✭ 11 (-98.92%)
Mutual labels:  package
Laravel Dropbox Driver
A storage extension for Dropbox.
Stars: ✭ 42 (-95.89%)
Mutual labels:  package
Create Release
An Action to create releases via the GitHub Release API
Stars: ✭ 976 (-4.5%)
Mutual labels:  release-automation
List view item builder
Flutter package: Item builder for ListView,to quickly build header & item & footer,and provide jumpTo(index) function.
Stars: ✭ 31 (-96.97%)
Mutual labels:  package
Westwind.htmlpackager
A small utility class used to package HTML content into a self contained HTML document both as a single file, or a folder with all dependencies copied to local.
Stars: ✭ 27 (-97.36%)
Mutual labels:  package
Gravity
Kubernetes application deployments for restricted, regulated or remote environments.
Stars: ✭ 968 (-5.28%)
Mutual labels:  package
Cpcache
central pacman cache
Stars: ✭ 15 (-98.53%)
Mutual labels:  package
Htmlcache
Laravel middleware to cache the rendered html
Stars: ✭ 35 (-96.58%)
Mutual labels:  package
Laravel Mention
a laravel user mentioned package
Stars: ✭ 12 (-98.83%)
Mutual labels:  package
Sao Nm
Scaffold out a node module.
Stars: ✭ 30 (-97.06%)
Mutual labels:  package
Tdm
R package for normalizing RNA-seq data to make them comparable to microarray data.
Stars: ✭ 33 (-96.77%)
Mutual labels:  package
Bili
Bili makes it easier to bundle JavaScript libraries.
Stars: ✭ 949 (-7.14%)
Mutual labels:  package
Gub
CLI tool for create an npm package from any repos. 🐳
Stars: ✭ 31 (-96.97%)
Mutual labels:  package

.. image:: https://api.cirrus-ci.com/github/pyscaffold/pyscaffold.svg?branch=master :alt: Built Status :target: https://cirrus-ci.com/github/pyscaffold/pyscaffold .. image:: https://readthedocs.org/projects/pyscaffold/badge/?version=latest :alt: ReadTheDocs :target: https://pyscaffold.org/en/latest .. image:: https://img.shields.io/coveralls/github/pyscaffold/pyscaffold/master.svg :alt: Coveralls :target: https://coveralls.io/r/pyscaffold/pyscaffold .. image:: https://img.shields.io/pypi/v/pyscaffold.svg :alt: PyPI-Server :target: https://pypi.org/project/pyscaffold/ .. image:: https://img.shields.io/conda/vn/conda-forge/pyscaffold.svg :alt: Conda-Forge :target: https://anaconda.org/conda-forge/pyscaffold .. image:: https://pepy.tech/badge/pyscaffold/month :alt: Monthly Downloads :target: https://pepy.tech/project/pyscaffold .. image:: https://img.shields.io/twitter/url/http/shields.io.svg?style=social&label=Follow :alt: Twitter :target: https://twitter.com/pyscaffold

|

.. image:: https://pyscaffold.org/en/latest/_images/logo.png :height: 512px :width: 512px :scale: 60 % :alt: PyScaffold logo :align: center

|

PyScaffold is the tool of choice for bootstrapping high quality Python packages, ready to be shared on PyPI_ and installable via pip_. It is easy to use and encourages the adoption of the best tools and practices of the Python ecosystem, helping you and your team to stay sane, happy and productive. The best part? It is stable and has been used by thousands of developers for over half a decade!

Checkout out this demo project, which was set up using PyScaffold and if you are still not convinced yet, also have a look at these reasons to use PyScaffold.

**NOTE** - This document refers to the latest version of PyScaffold (v4).
Please refer to `v3.3`_ for the previous stable version.

Quickstart

Just pick your favourite installation method::

## Good old pip
# (make sure it is up-to-date: pip install -U pip setuptools)
pip install pyscaffold

## Conda for the datascience fans
conda install -c conda-forge pyscaffold

## Or even pipx for the virtualenv aficionados
pipx install pyscaffold

If you want to install all PyScaffold's extensions you can even::

pip install pyscaffold[all]

(More details of each method are available in the installation docs_)

After the installation, a new putup command will be available and you can just type::

putup my_project

This will create a new folder called my_project containing a perfect project template with everything you need for some serious coding.

After cd-ing into your new project and creating (or activating) an isolated development environment_ (with virtualenv_, conda_ or your preferred tool), you can do the usual editable install_::

pip install -e .

… all set and ready to go!

We also recommend using tox_, so you can take advantage of the automation tasks we have setup for you, like::

tox -e build # to build your package distribution tox -e publish # to test your project uploads correctly in test.pypi.org tox -e publish -- --repository pypi # to release your package to PyPI tox -av # to list all the tasks available

Type putup -h to learn about more configuration options. PyScaffold assumes that you have Git_ installed and set up on your PC, meaning at least your name and email are configured.

The project template in my_project provides you with following features:

Configuration & Packaging

All configuration can be done in setup.cfg like changing the description, URL, classifiers, installation requirements and so on as defined by setuptools_. That means in most cases it is not necessary to tamper with setup.py.

In order to build a source or wheel distribution, just run tox -e build (python setup.py sdist or python setup.py bdist_wheel if you don't use tox_).

.. rubric:: Package and Files Data

Additional data, e.g. images and text files, that reside within your package and are tracked by Git will automatically be included if include_package_data = True in setup.cfg. It is not necessary to have a MANIFEST.in file for this to work.

Note that the include_package_data option in setup.cfg is only guaranteed to be read when creating a wheels_ distribution. Other distribution methods might behave unexpectedly (e.g. always including data files even when include_package_data = False). Therefore, the best option if you want to have data files in your repository but not as part of the pip installable package is to add them somewhere outside the src directory (e.g. a files directory in the root of the project, or inside tests if you use them for checks). Additionally you can exclude them explicitly via the [options.packages.find] exclude option in setup.cfg.

Versioning and Git Integration

Your project is an already initialised Git repository and uses the information of tags to infer the version of your project with the help of setuptools_scm_. To use this feature, you need to tag with the format MAJOR.MINOR[.PATCH] , e.g. 0.0.1 or 0.1. Run python setup.py --version to retrieve the current PEP440_-compliant version. This version will be used when building a package and is also accessible through my_project.__version__.

Unleash the power of Git by using its pre-commit hooks_. This feature is available through the --pre-commit flag. After your project's scaffold was generated, make sure pre-commit is installed, e.g. pip install pre-commit, then just run pre-commit install.

A default .gitignore file is also provided; it is well adjusted for Python projects and the most common tools.

Sphinx Documentation

PyScaffold will prepare a docs directory with all you need to start writing your documentation. Start editing the file docs/index.rst to extend the documentation. The documentation also works with Read the Docs_.

The Numpy and Google style docstrings_ are activated by default.

If you have tox_ in your system, simply run tox -e docs or tox -e doctests to compile the docs or run the doctests.

Alternatively, if you have make_ and Sphinx_ installed in your computer, build the documentation with make -C docs html and run doctests with make -C docs doctest. Just make sure Sphinx 1.3 or above is installed.

Automation, Tests & Coverage

PyScaffold relies on pytest_ to run all automated tests defined in the subfolder tests. Some sane default flags for pytest are already defined in the [tool:pytest] section of setup.cfg. The pytest plugin pytest-cov_ is used to automatically generate a coverage report. It is also possible to provide additional parameters and flags on the commandline, e.g., type::

pytest -h

to show the help of pytest (requires pytest_ to be installed in your system or virtualenv).

Projects generated with PyScaffold by default support running tests via tox_, a virtualenv management and test tool, which is very handy. If you run::

tox

in the root of your project, tox_ will download its dependencies, build the package, install it in a virtualenv and run the tests using pytest_, so you are sure everything is properly tested.

.. rubric:: JUnit and Coverage HTML/XML

For usage with a continuous integration software JUnit and Coverage XML output can be activated in setup.cfg. Use the flag --cirrus to generate templates of the Cirrus CI_ configuration file .cirrus.yml which even features the coverage and stats system Coveralls_.

Management of Requirements & Licenses

Installation requirements of your project can be defined inside setup.cfg, e.g. install_requires = numpy; scipy. To avoid package dependency problems it is common to not pin installation requirements to any specific version, although minimum versions, e.g. sphinx>=1.3, and/or maximum versions, e.g. pandas<0.12, are used frequently in accordance with semantic versioning_.

All licenses from choosealicense.com_ can be easily selected with the help of the --license flag.

Extensions

PyScaffold comes with several extensions:

  • If you want a project setup for a Data Science task, just use --dsproject after having installed pyscaffoldext-dsproject_.

  • Have a README.md based on Markdown instead of README.rst by using --markdown after having installed pyscaffoldext-markdown_.

  • Create a Django project_ with the flag --django which is equivalent to django-admin startproject my_project enhanced by PyScaffold's features (requires pyscaffoldext-django_).

  • … and many more like --gitlab to create the necessary files for GitLab_, --travis for Travis CI_ (see pyscaffoldext-travis), or --cookiecutter for Cookiecutter integration (see pyscaffoldext-cookiecutter_).

Find more extensions within the PyScaffold organisation_ and consider contributing your own, it is very easy! You can quickly generate a template for your extension with the --custom-extension option after having installed pyscaffoldext-custom-extension_.

All extensions can easily be installed with pip install pyscaffoldext-NAME.

Easy Updating

Keep your project's scaffold up-to-date by applying putup --update my_project when a new version of PyScaffold was released. An update will only overwrite files that are not often altered by users like setup.py. To update all files use --update --force. An existing project that was not setup with PyScaffold can be converted with putup --force existing_project. The force option is completely safe to use since the git repository of the existing project is not touched!

.. _v3.3: https://pyscaffold.org/en/v3.3.x/ .. _PyPI: https://pypi.org/ .. _pip: https://pip.pypa.io/ .. _this demo project: https://github.com/pyscaffold/pyscaffold-demo .. _reasons to use PyScaffold: https://pyscaffold.org/en/latest/reasons.html .. _installation docs: https://pyscaffold.org/en/latest/install.html .. _isolated development environment: https://realpython.com/python-virtual-environments-a-primer/ .. also good, but sometimes medium can get on the way: https://towardsdatascience.com/virtual-environments-104c62d48c54 .. _virtualenv: https://virtualenv.pypa.io .. _conda: https://conda.io .. _editable install: https://pip.pypa.io/en/stable/reference/pip_install/#install-editable .. _setuptools: http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files .. _setuptools_scm: https://pypi.python.org/pypi/setuptools_scm/ .. _semantic versioning: https://semver.org .. _Git: http://git-scm.com/ .. _PEP440: http://www.python.org/dev/peps/pep-0440/ .. _pre-commit hooks: http://pre-commit.com/ .. _py.test: http://pytest.org/ .. _make: https://www.gnu.org/software/make/ .. _Sphinx: http://www.sphinx-doc.org/ .. _Read the Docs: https://readthedocs.org/ .. _Numpy and Google style docstrings: http://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html .. _pytest: http://pytest.org/ .. _pytest-cov: https://github.com/schlamar/pytest-cov .. _Cirrus CI: https://cirrus-ci.org .. _Travis CI: https://travis-ci.org/ .. _Coveralls: https://coveralls.io/ .. _tox: https://tox.readthedocs.org/ .. _choosealicense.com: http://choosealicense.com/ .. _Django project: https://www.djangoproject.com/ .. _Cookiecutter: https://cookiecutter.readthedocs.org/ .. _GitLab: https://about.gitlab.com/ .. _pip-tools: https://github.com/jazzband/pip-tools/ .. _pyscaffoldext-dsproject: https://github.com/pyscaffold/pyscaffoldext-dsproject .. _pyscaffoldext-custom-extension: https://github.com/pyscaffold/pyscaffoldext-custom-extension .. _pyscaffoldext-markdown: https://github.com/pyscaffold/pyscaffoldext-markdown .. _pyscaffoldext-django: https://github.com/pyscaffold/pyscaffoldext-django .. _pyscaffoldext-cookiecutter: https://github.com/pyscaffold/pyscaffoldext-cookiecutter .. _pyscaffoldext-travis: https://github.com/pyscaffold/pyscaffoldext-travis .. _PyScaffold organisation: https://github.com/pyscaffold/ .. _wheels: https://realpython.com/python-wheels/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].