-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
34 lines (29 loc) · 917 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
[project]
name = "talon-ai-tools"
version = "1.0.0"
description = "Use Talon with AI tools to speed up your development."
license = { file = 'LICENSE' }
authors = [
{ name = "Colton Loftus", email = "[email protected]" },
]
readme = "README.md"
keywords = ["talon", "GPT", "OpenAI"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
]
[tool.black]
target-version = ['py311']
[tool.isort]
profile = 'black'
[tool.pytest.ini_options]
pythonpath = [".", "test/stubs"]
[tool.pyright]
# Talon classes don't use self so ignore the associated errors
reportSelfClsParameterName = false
reportGeneralTypeIssues = false
# Imgui functions return an object that can't be statically resolved
reportFunctionMemberAccess = false
# Talon can't be installed in CI so ignore source errors
reportMissingModuleSource = false
reportMissingImports = false