-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (53 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "slither-lsp"
description = "Language Server powered by the Slither static analyzer"
version = "0.0.1"
readme = "README.md"
dependencies = [
"slither-analyzer>=0.10.2",
"semantic-version>=2.10.0",
"pygls>=1.3.0"
]
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
]
requires-python = ">=3.10"
[[project.authors]]
name = "Trail of Bits"
email = "[email protected]"
[project.license]
file = "LICENSE"
[project.urls]
Repository = "https://github.com/crytic/slither-lsp"
Issues = "https://github.com/crytic/slither-lsp/issues"
[project.scripts]
slither-lsp = "slither_lsp.__main__:main"
# Pylint settings
[tool.pylint.messages_control]
max-line-length = 120
disable = """
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
unnecessary-lambda,
cyclic-import,
line-too-long,
invalid-name,
fixme,
too-many-return-statements,
too-many-ancestors,
logging-fstring-interpolation,
logging-not-lazy,
duplicate-code,
import-error,
unsubscriptable-object,
unnecessary-lambda-assignment,
too-few-public-methods,
too-many-instance-attributes
"""