Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

autosemver

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autosemver

Tools to handle automatic semantic versioning in python

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
2

.. image:: https://travis-ci.org/david-caro/python-autosemver.svg?branch=master :alt: Latest commit build status :target: https://travis-ci.org/david-caro/python-autosemver

.. image:: https://readthedocs.org/projects/autosemver/badge/?version=latest :alt: Documentation :target: https://autosemver.readthedocs.io

.. image:: https://img.shields.io/github/license/david-caro/python-autosemver?color=blue :alt: License :target: https://github.com/david-caro/python-autosemver/blob/master/LICENSE

.. image:: https://badge.fury.io/py/autosemver.svg :alt: Latest PyPI - Version :target: https://badge.fury.io/py/autosemver

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :alt: Code style :target: https://github.com/ambv/black

.. image:: https://img.shields.io/pypi/dm/autosemver :alt: PyPI - Downloads

=========== Autosemver

This small module provides an easy way to automatically manage the evrsion of your python modules by extracting information directly from the version control system (currently only git supported, patches welcome).

Once installed (ex. pip install autosemver), adding a single line in your setup.py file is enough to start using it::

setup(
    name='some-package',
    url='http://my.fancy/shrubbery',
    ...
    install_requires=['some_important_dep', 'autosemver'],
    ...
    setup_requires=['autosemver'],
    ...
    autosemver=True,
)

That will use tags, commit messages (searches for lines like Sem-Ver: ... and * Incompatible) to generate a version compatible with the semantic versioning standard (https://semver.org/).

Read the full documentation here: http://autosemver.readthedocs.io

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc