forked from quarkslab/aosp_dataset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 804 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
[project]
name = "aosp_dataset"
authors = [
{name = "A. Challande", email = "achallande@quarkslab.com"},
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Topic :: Security",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Private :: Do Not Upload",
]
dynamic = ["version", "description"]
dependencies = [
"pydantic>=1.9,<2",
]
[project.optional-dependencies]
dev = [
"black",
]
[project.url]
Home = "https://github.com/quarkslab/aosp_dataset"
[project.scripts]
generate-schema = "aosp_dataset:generate_schema"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.black]
extend-exclude = "(_pb2.pyi?$|_pb2_grpc.pyi?$)"