From a02045f77ea8a8f3cceab06e7092c748ad10c9d0 Mon Sep 17 00:00:00 2001 From: Stefan Bienert <stefan.bienert@unibas.ch> Date: Fri, 18 Aug 2023 10:52:50 +0200 Subject: [PATCH] Added pyproject.toml --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c80443d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[project] +name = "alphapulldown-modelcif-converter" +version = "0.0.1" +requires-python = "==3.8" +dependencies = [ + "modelcif==0.8", +] + +[tool.black] +line-length = 80 + +[tool.pylint.REPORTS] +reports = "no" + +[tool.pylint.FORMAT] +max-line-length = 81 -- GitLab