Metadata-Version: 2.4
Name: pyjobshop
Version: 0.0.8
Summary: Solving scheduling problems with constraint programming.
Keywords: scheduling,job shop,project scheduling,constraint programming,operations research
Author: Leon Lan, Joost Berkhout
Author-email: Leon Lan <leon.lanyidong@gmail.com>, Joost Berkhout <joost.berkhout@vu.nl>
License-Expression: MIT
License-File: LICENSE.md
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Dist: ortools>=9.12.4544
Requires-Dist: matplotlib>=3.9.2
Requires-Dist: fjsplib>=0.0.2
Requires-Dist: psplib>=0.4.0
Requires-Dist: tqdm>=4.66.5
Requires-Dist: tomli>=2.0.1
Requires-Dist: cplex>=22.1.2 ; extra == 'cplex'
Requires-Dist: docplex>=2.28.240 ; extra == 'docplex'
Requires-Python: >=3.10
Project-URL: Documentation, https://pyjobshop.org
Project-URL: Homepage, https://pyjobshop.org
Project-URL: Issues, https://github.com/PyJobShop/PyJobShop/issues
Project-URL: Repository, https://github.com/PyJobShop/PyJobShop
Provides-Extra: cplex
Provides-Extra: docplex
Description-Content-Type: text/markdown

![PyJobShop logo](docs/source/assets/images/logo.svg)

[![PyPI](https://img.shields.io/pypi/v/PyJobShop?style=flat-square)](https://pypi.org/project/pyjobshop/)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/PyJobShop/PyJobShop/)
[![CI](https://img.shields.io/github/actions/workflow/status/PyJobShop/PyJobShop/.github%2Fworkflows%2FCI.yml?style=flat-square)](https://github.com/PyJobShop/PyJobShop/)
[![DOC](https://img.shields.io/readthedocs/pyjobshop?style=flat-square)](https://pyjobshop.org)
[![Codecov](https://img.shields.io/codecov/c/github/PyJobShop/PyJobShop?style=flat-square)](https://app.codecov.io/gh/PyJobShop/PyJobShop/)

PyJobShop is a Python library for solving scheduling problems with constraint programming.
It currently supports the following scheduling problems:

- **Resource environments:** single machines, parallel machines, hybrid flow shops, open shops, job shops, flexible job shops, distributed shops, renewable resources and consumable resources.
- **Constraints:** release dates, deadlines, due dates, multiple modes, permutations, sequence-dependent setup times, no-wait, no-idle, blocking, breaks, optional task selection, and arbitrary precedence constraints.
- **Objective functions:** minimizing makespan, total flow time, number of tardy jobs, total tardiness, total earliness, maximum tardiness, and total setup times.

You can find PyJobShop on the Python Package Index under the name `pyjobshop`. 
To install it, simply run:

``` shell
pip install pyjobshop
```

The documentation is available [here](https://pyjobshop.org/).

## Constraint programming solvers

PyJobShop uses [OR-Tools'](https://github.com/google/or-tools) CP-SAT solver as its default constraint programming solver.
We also provide support for CP Optimizer. 
See [our documentation](https://pyjobshop.org/stable/setup/installation.html) for instructions on how to install PyJobShop with CP Optimizer.

## Examples

We provide example notebooks that show how PyJobShop may be used to solve scheduling problems.

- A short tutorial and introduction to PyJobShop's modeling interface, available [here](https://pyjobshop.org/stable/examples/simple_example.html). This is a great way to get started with PyJobShop.
- Notebooks solving the classical machine scheduling problems such as the flexible job shop problem ([here](https://pyjobshop.org/stable/examples/flexible_job_shop.html)), the hybrid flow shop ([here](https://pyjobshop.org/stable/examples/hybrid_flow_shop.html)), and the permutation flow shop ([here](https://pyjobshop.org/stable/examples/permutation_flow_shop.html)).
- A notebook showing how to solve different project scheduling problems, [here](https://pyjobshop.org/stable/examples/project_scheduling.html).
- A notebook showing how to solve scheduling problems with optional tasks, [here](https://pyjobshop.org/stable/examples/optional_tasks.html).
- A notebook showing how to solve scheduling problems with resource breaks, [here](https://pyjobshop.org/stable/examples/breaks.html).
- An overview of supported objective functions, [here](https://pyjobshop.org/stable/examples/objectives_examples.html).

If you are new to scheduling or constraint programming, you might benefit from first reading the [introduction to scheduling](https://pyjobshop.org/stable/setup/intro_to_scheduling.html) and [introduction to constraint programming](https://pyjobshop.org/stable/setup/intro_to_cp.html) pages.

## Contributing

We are very grateful for any contributions you are willing to make. 
Please have a look [here](https://pyjobshop.org/stable/dev/contributing.html) to get started. 
If you aim to make a large change, it is helpful to discuss the change first in a new GitHub issue. Feel free to open one!

## Getting help

Feel free to open an issue or a new discussion thread here on GitHub.
Please do not e-mail us with questions, modeling issues, or code examples.
Those are much easier to discuss via GitHub than over e-mail.
When writing your issue or discussion, please follow the instructions [here](https://pyjobshop.org/stable/setup/getting_help.html).

### How to cite PyJobShop

If you use PyJobShop in your research, please consider citing the following paper:

> Lan, L., and Berkhout, J. (2025).
> PyJobShop: Solving scheduling problems with constraint programming in Python.
> https://arxiv.org/abs/2502.13483

Or, using the following BibTeX entry:

```bibtex
@misc{Lan_Berkhout_2025,
      title={{PyJobShop}: Solving scheduling problems with constraint programming in {Python}}, 
      author={Leon Lan and Joost Berkhout},
      year={2025},
      url={https://arxiv.org/abs/2502.13483}, 
      archivePrefix="arXiv",
      eprint={2502.13483},
}
```
