-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pyrightconfig.toml
42 lines (34 loc) · 982 Bytes
/
.pyrightconfig.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
39
40
41
42
[tool.pyright]
include = ["project"]
defineConstant = { DEBUG = true }
stubPath = "src/stubs"
reportMissingImports = true
reportMissingTypeStubs = false
reportUnnecessaryTypeIgnoreComments = "information"
reportImportCycles = "warning"
reportMatchNotExhaustive = "warning"
reportShadowedImports = "warning"
pythonVersion = "3.10"
pythonPlatform = "Linux"
python.pythonPath="/opt/anaconda3/envs/myeachtra/bin/python"
executionEnvironment = [{
"root": "project/"
}]
verboseOutput = true
[project]
name = "MyEachtraX"
version = "0.1.0"
dependencies = ["./environment.yml"]
authors = [
{ name = "Allie", email = "[email protected]" }
]
license = {text = "MIT License"}
description = "A lifelog retrieval system with generative QA capabilities"
readme = "README.md"
keywords = ["lifelogging", "QA", "generative"]
[project.optionalDependencies]
cli = ["gitmoji-cli"]
[project.scripts]
start-cli="sh start.sh"
[python]
pythonPath = "/opt/anaconda3/envs/myeachtra/bin/python"