Skip to main content

A lightweight package for creating Python project templates.

Project description

https://github.com/inception-tools/inception-tools/workflows/Release%20Build/badge.svg https://github.com/inception-tools/inception-tools/workflows/Nightly%20Development%20Build/badge.svg https://github.com/inception-tools/inception-tools/workflows/Development%20Test%20Suite/badge.svg

Under Construction

Hello and welcome to the inception-tools project!

The goal of this project is to create, foster, and disseminate solid conventions for Python project structure through the propagation and reuse of project archetypes, developed and submitted by the community, which can be used as templates for automatically setting up new Python projects.

This project is currently under construction. This documentation describes current state of application functionality. The application currently supports a set of standard archetypes

  • simple - a basic project shell

  • cli - for creating command-line interface projects

  • lib - for developing and publishing a Python libraries

Support for user-defined archetypes is coming. Please check back periodically to see what’s new.

If you would like to see updates or additions to the standard archetypes, the templates are located in the archetypes directory and are made available to the CLI through the StandardArchetype class. Please submit a PR for review using the instructions in the Bugs, Contribution, and Feedback section, or reach out to the author’s email listed at the bottom of this document.

Documentation

Create a new Python project, ready to go, with a single command!

Inception-tools is a command-line application designed to create new software projects (in particular, Python-based projects) using a set of standardized project archetypes.

The base inception-tools package provides:

  • Simple command-line invocation for creating “stubbed-out” Python projects, parameterized through the command-line call.

  • A set of standard archetypes for common Python project types:
    • simple
      • Creates a basic project shell.

    • cli
      • Creates a project shell geared toward developing and publishing a Python-based command-line application.

    • lib
      • Creates a project shell geared specifically toward developing and publishing a Python library

  • Each standard archetype creates a shell project structure with files, directories, class and function stubs, completely set up and ready for publication to PyPI using a standardized set of Makefile targets.

Python Package Index:

https://pypi.org/project/inception-tools/

GitHub Repository:

https://github.com/inception-tools/inception-tools

Installation

Download and install the latest version of this application from the Python package index (PyPI) as follows:

pip install inception-tools

Note that inception-tools has dependencies on the following packages:

  • click

  • jinja2

These should be automatically installed by pip using the command-line above.

Usage

Once Inception Tools has been installed, you can create a new project shell as follows:

it incept package_name [project_root]

This will create a new project (using the standard application archetype) under the directory project_root using additional parameters stored in file inception-tools.cfg:

<project_root>/
    docs/
    <package_name>/
        __init__.py
        cli.py
    scripts/
    tests/
        __init__.py
        end-to-end/
            __init__.py
        integration/
            __init__.py
        unit/
            __init__.py
    LICENSE
    Makefile
    Pipfile
    README.rst
    setup.cfg
    setup.py
package_name (required)

The package name that will used for your new project, e.g. inception_tools. This will be used to create for the name of the package, for the name of a stub entry point files, and in the names of test modules. It will also be used as the relative path for the project_root argument in the event that it is omitted (see below).

[project_root] (optional) default: package_name

The path to the directory under which your project should be installed, e.g. inception-tools.

Example installing to a directory my_package in the current working directory:

it incept my_package

Example installing to a directory called my_project in the user’s home directory:

it incept my_package ~/my_project

The following options are also available:

--author-name (optional)

The name of the package author, e.g. ‘Jane Doe’. Defaults to ‘[author-name]’.

--author-email (optional)

The email address of the author, e.g. ‘jane.doe@inception-tools.org’.

--org-name (optional)

The name of the organization sponsoring development for the project, e.g. ‘inception-tools’.

--archetype (optional)

Determines the archetype used to create the stub project. Defaults to ‘cli’. Must be one of the following:

  • simple
    • Creates a basic project shell.

  • cli
    • Creates a project shell geared toward developing and publishing a Python-based command-line application.

  • lib
    • Creates a project shell geared specifically toward developing and publishing a Python library

License

inception-tools is released under the Apache Software License v2.0 - see the files LICENSE for further details.

Bugs, Contribution, and Feedback

Contributions and feedback are welcome. Contributions can be made by opening a pull request at the inception-tools repository and tagging @avanherick for review. Please see the Development section of this document for code style and branching guidelines.

This project was created to fill what looked like a lack of standardized conventions practices for structuring Python projects, and out of the desire to avoid the need to manually create the same directory and file structures over and over again.

If you come across this project and know of other project which accomplish similar goals, or of documented standards around Python project structure, we would welcome hearing about them.

Please submit feedback, bugs, feature requests, and code changes using GitHub at: http://github.com/inception-tools/inception-tools

Development

Repository Management:

Inception Tools manages its repository using the GitFlow model.

Code style:

Inception Tools code should adhere to the PEP 8 guidelines with the exception of maximum line length, which instead uses black’s default of 88.

Versioning:

Inception Tools uses semantic versioning and adheres to the guidelines specified here.

CI/CD:
  • All builds are automated through GitHub actions.

  • Development builds are executed against the develop branch.

  • Beta builds are executed with each push to the master branch.

  • Release builds are triggered by the creation of a release through GitHub.

Changes

v0.1.0

  • Initial public version

author:

Andrew van Herick

email:

avanherick@gmail.com

date:

2022-01-03

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

inception-tools-0.0.8.dev20220611.tar.gz (21.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file inception-tools-0.0.8.dev20220611.tar.gz.

File metadata

File hashes

Hashes for inception-tools-0.0.8.dev20220611.tar.gz
Algorithm Hash digest
SHA256 ecbda761f61e2d277ecb72b806ef2cfffe7fd69a6bfb767428c304682b9b15ed
MD5 ed882c9e07387260209e8c5a80f35b38
BLAKE2b-256 2b52941071394e6fcbcb3a6a751144ab10150b4a2858d827ea7c2c0bd2b53533

See more details on using hashes here.

File details

Details for the file inception_tools-0.0.8.dev20220611-py3-none-any.whl.

File metadata

File hashes

Hashes for inception_tools-0.0.8.dev20220611-py3-none-any.whl
Algorithm Hash digest
SHA256 3b71fac689e64a825ca63fdeb69e6e89a8c80102b3c893cc6e3c225e803267d2
MD5 a96008e0844503dac5e1927d6f1af005
BLAKE2b-256 ad491f6d210f3ddc4e3c27e048730e00e58307d74b1f51fcae4476b8c4d59d23

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page