-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 955 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
[project]
name = "piiip"
version = "1.0.0"
authors = [{name = "TNO Software and System Security"}]
requires-python = ">= 3.8"
license = {text = "Apache License, Version 2.0"}
description = "Piiip Interactively Installs Intended Packages"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"importlib_resources; python_version<'3.10'",
"requests",
"tenacity",
]
[project.scripts]
piiip = "piiip.cmd:main"
[project.urls]
Homepage = "https://github.com/TNO-S3/piiip"
[tool.setuptools]
platforms = ["any"]
[tool.setuptools.package-data]
"*" = ["py.typed", "resources/*.txt", "resources/*.json"]