Coder Social home page Coder Social logo

lgtm-migrator / keats Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jvrana/keats

0.0 0.0 0.0 224 KB

Utilities for managing python version, change logs, and project releases.

License: MIT License

Shell 7.47% Python 89.99% Makefile 2.54%

keats's Introduction

Keats

PyPI version Code style: black Language grade: Python

John Keats

Keats is an Python build, installation, and workflow manager. Keats removes the need to update an embedded version string for your packages by automatically creating and maintaining a __version__.py file and a corresponding changelog.json file. Updates to pyproject.toml are automatically handled. Version updates are easy as calling keats version. Keats also includes an interactive release script, which can be called using keats release, which will release your package to your favorite repository such as PyPI.

Why

Every Python developer seems to have their own tricks and scripts for maintaining changelogs, package versions, and managing releases. Rather than reinventing the wheel everytime you develop a new pacakge, Keats provides a standard workflow for doing python package releases. No customization or Makefiles are required.

Usage

To install Keats to your project, run:

poetry run add --dev keats

Verify your installation by running

poetry run keats keats

To list documentation, run keats with no arguments

poetry run keats

To begin version managment by creating a __version__.py in your main package, run

poetry run keats version up

From within your python project, you can access your version number and other package information using something like (usually in the __init__.py of your main package).

from .__version__.py import __version__, __title__, __authors__ # and so on

To bump to the next version and update your change log (for more on change logs, see below)

poetry run keats bump

To bump to a specific version:

poetry run keats bump <optional version>

To bump without updating the change log:

poetry run keats version bump

Changelogs

Changelogs are important understanding project status and developer intentions. Keats encourages an up-to-date changelog by providing an standard interface for maintaining and updating change logs using the following files:

  • .keats/changelog.json - JSON formatted list of changes, with version number, dates, and optional change list.
  • .keats/changelog.md - markdown formatted changelog

The recommended way to use this is to run keats bump which will bump your package version and update your change log:

poetry run keats bump <optional version>

This will provide an interactive script to update your changelog with a description and a list of changes. Entries are appended to the .keats/changelog.json and saved. The file is then converted to a markdown file for readability or documentation purposes.

To just update your change log:

poetry run keats changelog add

If you want to just update the .keats/changelog.md from the json file, run:

poetry run keats changelog up

To clear your change logs:

poetry run keats changelog clear

Pre-commit Hooks

To automatically keep your __version__.py file up to date, install the following hook:

repos:
-   repo: https://github.com/jvrana/keats
    rev: 0.2.28
    hooks:
    - id: keats-version-up

Global installation

To install Keats globally, run:

pip install keats

You can then run all of the commands without the poetry run prefix, given that your current directory is a Python project with a pyproject.toml file.

keats's People

Contributors

jvrana avatar

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.