-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (20 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
25 lines (20 loc) · 911 Bytes
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
[project]
name="protoplaster"
version="1.0"
description="An automated framework for platform testing (Hardware and BSPs)"
authors=[{name = "Antmicro Ltd"}]
license={text = "Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)"}
dynamic = ["dependencies"]
[tool.setuptools.packages.find]
include = ["protoplaster*", "manager*"]
[project.scripts]
protoplaster = 'protoplaster.protoplaster:main'
protoplaster-test-report = 'protoplaster.report_generators.test_report.protoplaster_test_report:main'
protoplaster-system-report = 'protoplaster.report_generators.system_report.protoplaster_system_report:main'
protoplaster-mgmt = 'manager.protoplaster_mgmt:main'
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"*" = ["*.md", "*.css", "*.html", "*.yml", "*.svg", "*.png", "*.tcl"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"