-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.18 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "googlebardpy"
version = "0.1.0"
description = "Google Bard API in Python"
authors = ["0xMRTT <[email protected]>"]
maintainers = ["0xMRTT <[email protected]>"]
readme = "README.md"
packages = [{include = "googlebardpy"}]
license = "GPL-3.0-or-later"
homepage = "https://codeberg.org/Bavarder/googlebardpy"
documentation = "https://codeberg.org/Bavarder/googlebardpy"
keywords = ["google", "bard", "chat"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
repository = "https://codeberg.org/Bavarder/googlebardpy"
[tool.poetry.urls]
"Bug Tracker" = "https://codeberg.org/Bavarder/googlebardpy/issues"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.29.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "codeberg"
url = "https://codeberg.org/api/packages/Bavarder/pypi"
default = false
secondary = true