Metadata-Version: 2.2
Name: processflow
Version: 1.0.1
Summary: A Python package for creating process flow diagrams
Home-page: https://github.com/guochen2011gc/processflow
Author: CS Goh
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=10.0.0
Requires-Dist: Pillow>=8.0.0
Requires-Dist: drawsvg>=1.8.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# ProcessFlow

A Python package for creating process flow diagrams and BPMN-style workflow visualizations.

## Features

- Create process maps with pools and lanes
- Add various elements: start/end events, tasks, gateways, etc.
- Connect elements with labeled connections
- Export to PNG, SVG, and other formats
- Export to BPMN XML and Draw.io formats
- Customizable themes and styling

## Installation

```bash
pip install processflow
```

## Quick Start

```python
import processflow

# Create a process map
with processflow.ProcessMap(title="Order Processing") as pm:
    # Add a lane
    lane = pm.add_lane("Customer Service")
    
    # Add elements
    start = lane.add_element("Receive Order", processflow.EventType.START)
    task = lane.add_element("Process Order", processflow.ActivityType.TASK)
    end = lane.add_element("Order Complete", processflow.EventType.END)
    
    # Connect elements
    start.connect(task)
    task.connect(end)

# Draw and save
pm.draw()
pm.save("process_diagram.png")
```

## Documentation

For detailed documentation and examples, visit the project repository.

## License

MIT License
