-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (52 loc) · 1.13 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
[tool.poetry]
name = "panoptisch"
version = "0.1.7"
description = "A recursive Python dependency scanner."
authors = ["aarnav <[email protected]>"]
homepage = "https://github.com/R9295/panoptisch"
repository = "https://github.com/R9295/panoptisch"
documentation = "https://github.com/R9295/panoptisch"
license = "GPL-3.0"
keywords = [
"Dependency Scanner",
"Security",
"Supply Chain",
"Tool",
]
readme = "README.md"
classifiers = [
"Topic :: Security",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
[tool.poetry.dependencies]
python = "^3.10"
anytree = "^2.8.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
ipdb = "^0.13.9"
pytest = "^7.1.2"
isort = "^5.10.1"
pyfakefs = "^4.6.2"
pre-commit = "^2.20.0"
coverage = "^6.4.2"
[tool.poetry.scripts]
panoptisch = "panoptisch:main"
[tool.black]
line-length = 79
include = '\.pyi?$'
extend-include = true
exclude = '''
/(
\.git
| \.toml
| \.lock
| \.md
| \.env
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"