-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (48 loc) · 1.36 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
[tool.poetry]
name = "threat-db"
version = "0.6.3"
description = "A graphql server for vulnerabilities powered by dgraph"
authors = ["Team AppThreat <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "threat_db"}]
homepage = ""
repository = ""
keywords = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
exclude = ["contrib", "tests", "Dockerfile", "docker-compose.yml", "skaffold.yml"]
[tool.poetry.scripts]
threat_db = 'threat_db.cli:main'
threat_db_admin = 'threat_db.admincli:main'
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
pydgraph = "^21.3.2"
grpcio = "^1.51.1"
rich = "^13.3.1"
protobuf = "^3.20.1"
packageurl-python = "^0.10.4"
gql = {extras = ["all"], version = "^3.4.0"}
flask = "^2.2.2"
uwsgi = "^2.0.21"
orjson = "^3.8.5"
itsdangerous = "^2.1.2"
flask-jwt-extended = "^4.4.4"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
black = "^23.1.0"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
pyinstaller = "^5.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"