forked from google/osv.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 936 Bytes
/
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
[tool.poetry]
name = "osv"
version = "0.0.22"
description = "Open Source Vulnerabilities library"
authors = ["OSV Authors <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "osv" }]
package-mode = true
# https://python-poetry.org/docs/dependency-specification/
[tool.poetry.dependencies]
python = "^3.11"
google-cloud-ndb = "^2.3"
google-cloud-logging = "^3.10"
google-cloud-storage = "^2.17"
semver = "^3.0"
packageurl-python = "==0.16.0"
pyyaml = "^6.0"
pygit2 = "^1.14.0"
attrs = "^23.2"
jsonschema = "^4.0"
grpcio = "^1.0"
# TODO: Can this be higher
packaging = "<22.0"
requests = "^2.32"
[tool.poetry.dev-dependencies]
yapf = "*"
pylint = "*"
grpcio-tools = "*"
mypy-protobuf = "^3.6.0"
[tool.pyright]
executionEnvironments = [
{ root = "osv/models.py", reportAssignmentType = "none" },
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"