-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.09 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tealer"
version = "0.1.2"
authors = [{ name = "Trail of Bits" }]
description = "Teal analyzer."
readme = "README.md"
license = { "text" = "AGPL-3.0" }
urls = { "Homepage" = "https://github.com/crytic/tealer" }
requires-python = ">=3.9"
dependencies = [
"prettytable>=0.7.2",
"py-algorand-sdk",
"pycryptodomex",
"requests",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pylint==2.13.4",
"black==22.3.0",
"mypy==0.942",
"pytest-cov",
]
[project.scripts]
tealer = "tealer.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
target-version = ["py39"]
line-length = 100
[tool.pylint.messages_control]
disable = """
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
unnecessary-lambda,
bad-continuation,
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,
"""