-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
126 lines (102 loc) · 2.32 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[tool.poetry]
name = "asciicast"
version = "0.1.0"
homepage = "https://github.com/sfermigier/asciicast"
description = "Top-level package for asciicast."
authors = ["Abilian SAS <sf@abilian.com>"]
readme = "README.rst"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
packages = [
{ include = "asciicast", from = "src" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
attrs = "^23"
click = "^8.1.3"
asciinema = "^2.2.0"
[tool.poetry.group.dev.dependencies]
## Standard cruft
abilian-devtools = "*"
cruft = "*"
toml = "*"
## /standard cruft
snoop = "^0.4.3"
pytest = "^8"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# pyproject.toml
[tool.pytest.ini_options]
addopts = "--tb=short"
testpaths = [
"tests",
"src",
]
[tool.pyanalyze]
paths = ["src/"]
import_paths = ["."]
# Additional checks
bare_ignore = true
missing_f = true
use_fstrings = true
value_always_true = true
# TODO: fix issues and activate
#unused_ignore = true
#enforce_no_unused = true
#incompatible_override = true
#missing_parameter_annotation = true
#missing_return_annotation = true
#suggested_parameter_type = true
#suggested_return_type = true
#use_fstrings = true
#value_always_true = true
# TODO: fix issues and remove
attribute_is_never_set = false
duplicate_dict_key = false
import_failed = false
impossible_pattern = false
incompatible_argument = false
incompatible_call = false
incompatible_return_value = false
internal_error = false
missing_return = false
possibly_undefined_name = false
undefined_attribute = false
unused_variable = false
[tool.deptry]
ignore_obsolete = [
]
ignore_missing = [
]
ignore_transitive = [
]
exclude = [
'.tox', 'tests', 'sandbox', 'doc', 'scripts',
]
[tool.pyright]
exclude = [
'.tox',
'.nox',
'tests',
'sandbox',
'doc',
'scripts',
'tmp',
]
include = ["src"]
# pyright has issues with modules imported from a root __init__.py
reportPrivateImportUsage = false
# Temp
reportGeneralTypeIssues = false
reportMissingImports = false
reportOptionalSubscript = false