Metadata-Version: 2.1
Name: kpctl
Version: 3.2.1
Summary: Command line interface for working with business process models (*.bpmn)
License: Apache 2.0
Author: Tim Stephenson
Author-email: tim@knowprocess.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: CairoSVG (>=2.7.1,<3.0.0)
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: lxml (>=4.9.3,<5.0.0)
Requires-Dist: oauthlib (>=3.2.2,<4.0.0)
Requires-Dist: pathlib (>=1.0.1,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: requests-oauthlib (>=1.3.1,<2.0.0)
Description-Content-Type: text/markdown

kpctl
=====

Command line interface to:

- inspect, document, enhance and validate BPMN files; and
- execute process-based applications on the KnowProcess platform

Build and publish to Test version of PyPI
-----------------------------------------

1. Increment version

   ```
   bumpversion --current-version 3.1.4 [major|minor|patch] setup.py kpctl/__init__.py
   ```

2. Build...

   ```
   python3 setup.py sdist bdist_wheel
   ```

3. Check (note this is not exhaustive)

   ```
   twine check dist/*
   ```

4. Publish to test server (can be repeated for same version)

   ```
   twine upload --repository-url https://test.pypi.org/legacy/ dist/*
   ```

5. Publish to test server (can be repeated for same version)

   ```
   twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
   ```

