Files
Auto-GPT-Crypto-Plugin/pyproject.toml
2023-04-23 00:29:14 -07:00

38 lines
878 B
TOML

[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"