diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d9511ec --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[project] +name = "dagformer" +version = "0.1.0" +description = "Context-conditioned DAG topology predictor for OLMo2-1B" +requires-python = ">=3.9" +dependencies = [ + "torch>=2.2", + "transformers>=4.40", + "datasets", + "wandb", + "pyyaml", + "einops", +] + +[build-system] +requires = ["setuptools>=64"] +build-backend = "setuptools.backends._legacy:_Backend" + +[tool.setuptools.packages.find] +where = ["."] +include = ["src*"] |
