This repository was archived by the owner on Oct 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.42 KB
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
42
43
44
45
46
47
48
49
50
51
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core>=1.0.0", "setuptools",]
[tool.poetry]
name = "lst_agents"
version = "0.1.2"
description = ""
authors = ["eightballer"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
autonomy-dev = {extras = ["all"], version = ">=0.2.0,<=0.2.157"}
click = "8.1.8"
apprise = "^1.9.4"
openapi-core = "==0.14.5"
openapi-spec-validator = "==0.2.8"
aioprometheus = "<21.0.0"
[tool.poetry.group.dev.dependencies]
responses = "^0.23.1"
mkdocs = "^1.6.0"
mkdocs-include-markdown-plugin = "^7.0.0"
mkdocs-mermaid2-plugin = "^1.1.1"
mkdocs-material = "^9.5.47"
mkdocs-material-extensions = "^1.3.1"
mkdocstrings = { extras = [ "python",], version = ">=0.25.2,<0.28.0" }
twine = "^5.1.1"
mkdocs-autorefs = "^1.0.1"
pyright = "^1.1.405"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = [ "py37", "py38", "py39",]
include = "\\.pyi?$"
exclude = "/(\n \\.eggs\n | \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n"