From 2b21cda41aa813a3b1b7fb06929675e7e4e05cfd Mon Sep 17 00:00:00 2001 From: ostix360 Date: Mon, 26 Jun 2023 09:28:01 +0200 Subject: Add pyproject.toml to build the project --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..6f170632 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "gpt4free" +version = "0.2.0" +description = "" +authors = [] +license = { text = "GPL-3.0" } +readme = "README.md" +requires-python = ">=3.10" +dynamic = ["dependencies"] + +[tool.setuptools.packages.find] +exclude = ["**/*.txt", "/.v1/*"] + + +[tool.setuptools.dynamic] +dependencies = {file = ["requirements.txt"]} \ No newline at end of file -- cgit v1.2.3