forked from Significant-Gravitas/Auto-GPT-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 928 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agpt_plugins"
version = "0.0.2"
authors = [
{ name="Torantulino", email="[email protected]" }, { name="Riensen", email="[email protected]" }
]
description = "The plugins for Auto-GPT."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["abstract-singleton"]
[project.urls]
"Homepage" = "https://github.com/Significant-Gravitas/Auto-GPT-Plugins"
"Bug Tracker" = "https://github.com/Significant-Gravitas/Auto-GPT-Plugins"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = ""
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"