From ba9dced1087e5fd7d4211cc7e4004f8ed7f53721 Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Thu, 11 Dec 2025 16:02:46 -0500 Subject: [PATCH] add pyproject.toml, .python-version --- .python-version | 1 + pyproject.toml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .python-version create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f71d657 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[project] +name = "1article" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "black>=25.1.0", + "dash>=3.1.1", + "dash-cytoscape>=1.0.2", + "matplotlib>=3.10.3", + "pyqt6>=6.9.1", +]