Bone-Market-Solver/Pipfile
Jeremy Saklad 985414aeab
Add Windows-specific curses dependency
The curses module is not included with Python on Windows, and must be
installed as a package. The Pipfile has been updated to do this when run
on Windows.
2021-07-20 11:15:56 -05:00

14 lines
208 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
ortools = "~=9.0"
windows-curses = {platform_system = "== 'Windows'"}
[dev-packages]
[requires]
python_version = "3.9"