summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 10718ffa1b4b5f6eee80d289666f07d0c6b5d5a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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/*"]
include = ["g4f"]


[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}