Metadata-Version: 2.1
Name: buildincr
Version: 0.1.1
Summary: Increment the value in the build-serial-file by one.
Author: Nian MinPeng
Author-email: nianminpeng@zencore.cn
Maintainer: Nian MinPeng
Maintainer-email: nianminpeng@zencore.cn
License: MIT
Keywords: buildincr
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: portalocker
Requires-Dist: click

# buildincr

Increment the value in the build-serial-file by one.

## Install

```
pip install buildincr
```

## Usage

```
Usage: buildincr.py [OPTIONS] BUILD_SERIAL_FILE

  Increment the value in the build-serial-file by one.

Options:
  -l, --lock-file TEXT
  --help                Show this message and exit.
```

## Example

```
cat build.serial.txt
# show the value: 123

buildincr build.serial.txt
# show the result: 124

cat build.serial.txt
# show the value: 124
```

## Release

### v0.1.0

- First release.

### v0.1.1

- Doc update.
