forked from google/osv.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 881 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
[project]
name = "osv"
version = "0.0.22"
description = "Open Source Vulnerabilities library"
authors = [
{name = "OSV Authors", email = "[email protected]"}
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"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",
"packaging<22.0",
"requests>=2.32",
]
[tool.poetry.group.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>=2.0.0"]
build-backend = "poetry.core.masonry.api"