Metadata-Version: 2.1
Name: buildincr
Version: 0.1.0
Summary: Increment the value in the build-serial-file by one.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Keywords: buildincr
Platform: UNKNOWN
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

# 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.


