-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.14 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
[tool.poetry]
name = "vulners"
version = "2.3.3"
description = "Python library and command-line utility for Vulners (https://vulners.com)"
readme = "README.md"
authors = ["Vulners Team"]
keywords = ["security", "network", "vulners", "vulnerability", "CVE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
packages = [
{ include = "vulners" },
]
[tool.poetry.dependencies]
python = ">=3.8"
requests = "^2.31.0"
six = "^1.16.0"
appdirs = "^1.4.4"
[tool.poetry.dev-dependencies]
black = "^23.9.1"
isort = "^5.12.0"
autoflake = "^2.2.1"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 100
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"