generated from Significant-Gravitas/Auto-GPT-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 935 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_vicuna"
version = "0.0.1"
authors = [
{ name="Bill Schumacher", email="[email protected]" },
]
description = "The Vicuna for Auto-GPT."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["abstract-singleton", "auto-vicuna", "auto-gpt-plugin-template"]
[project.urls]
"Homepage" = "https://github.com/BillSchumacher/Auto-GPT-Vicuna"
"Bug Tracker" = "https://github.com/BillSchumacher/Auto-GPT-Vicuna/issues"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = ""
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"