From ee58a2fb8dcf68bc48681e7285f5701f911093d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 8 Aug 2023 11:34:47 +0200 Subject: [PATCH] add pyproject.toml --- pyproject.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7747a23 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,32 @@ +[project] +name = "hanabi" +version = "1.0.0" +description = "Hanabi interface" +readme = "README.md" +license = { file = "LICENSE" } +keywords = [ "hanabi" ] +authors = [ + { name = "Maximilian Keßler", email = "git@maximilian-kessler.de" ] +] +dependencies = [ + "requests", + "requests_cache", + "pysmt", + "termcolor", + "more_itertools", + "psycopg2", + "alive_progress", + "argparse", + "verboselogs", + "pebble", + "platformdirs", + "PyYAML", + "cython==0.29.36" +] + +[project.urls] +"Homepage" = "https://gitlab.com/kesslermaximilian/hanabi" + +[build-system] +requires = ["setuptools>=43.0.0", "wheel"] +build-backend = "setuptools.build_meta"