this repo has no description

Change to pyflow

Changed files
+29
+12
.gitignore
··· 1 + # General Python ignores 2 + build/ 3 + dist/ 4 + __pycache__/ 5 + __pypackages__/ 6 + .ipynb_checkpoints/ 7 + *.pyc 8 + *~ 9 + */.mypy_cache/ 10 + 11 + 12 + # Project ignores 1 13 bin/ 2 14 software/build/ 3 15 software/install/
+17
pyproject.toml
··· 1 + 2 + [tool.pyflow] 3 + name = "" 4 + py_version = "3.9" 5 + version = "0.1.0" 6 + 7 + [tool.pyflow.scripts] 8 + 9 + [tool.pyflow.dependencies] 10 + cffi = ">=0.0.0" 11 + numpy = ">=0.0.0" 12 + seaborn = ">=0.0.0" 13 + matplotlib = ">=0.0.0" 14 + minizinc = "^0.4.2" 15 + 16 + [tool.pyflow.dev-dependencies] 17 +