generated from Significant-Gravitas/Auto-GPT-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
38 lines (32 loc) · 878 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 = "auto_gpt_plugin_template"
version = "0.0.2"
authors = [
{ name="Torantulino", email="34168009+BillSchumacher@users.noreply.github.com" },
]
description = "The template plugin 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/Torantulino/Auto-GPT"
"Bug Tracker" = "https://github.com/Torantulino/Auto-GPT"
[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"