-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.03 KB
/
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
39
40
41
[tool.poetry]
name = "Fable Python"
version = "4.3.0"
description = "Fable"
authors = ["Dag Brattli <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://fable.io"
[tool.poetry.dependencies]
python = ">= 3.10, < 4.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = {version = "^24.3.0", allow-prereleases = true}
[tool.poetry.group.dev.dependencies]
jupyter-book = "^0.13.1"
[tool.pyright]
reportMissingTypeStubs = false
reportMissingImports = false
reportUnnecessaryTypeIgnoreComment = true
reportUnusedImport = true
reportUnusedVariable = true
reportUnnecessaryIsInstance = true
reportUnnecessaryComparison = true
reportUnnecessaryCast = true
reportPrivateUsage = true
reportImportCycles = true
reportDuplicateImport = true
reportConstantRedefinition = true
reportOverlappingOverload = true
reportInconsistentConstructor = true
reportImplicitStringConcatenation = true
pythonVersion = "3.10"
typeCheckingMode = "basic"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"