this repo has no description

Change to pyflow

Changed files
+29
+12
.gitignore
···
+
# General Python ignores
+
build/
+
dist/
+
__pycache__/
+
__pypackages__/
+
.ipynb_checkpoints/
+
*.pyc
+
*~
+
*/.mypy_cache/
+
+
+
# Project ignores
bin/
software/build/
software/install/
+17
pyproject.toml
···
+
+
[tool.pyflow]
+
name = ""
+
py_version = "3.9"
+
version = "0.1.0"
+
+
[tool.pyflow.scripts]
+
+
[tool.pyflow.dependencies]
+
cffi = ">=0.0.0"
+
numpy = ">=0.0.0"
+
seaborn = ">=0.0.0"
+
matplotlib = ">=0.0.0"
+
minizinc = "^0.4.2"
+
+
[tool.pyflow.dev-dependencies]
+