-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (36 loc) · 1.07 KB
/
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]
# https://pypi.org/project/polyspace-report2excel/
name = "polyspace-report2excel"
version = "1.0.2"
description = "read a polyspace report and export misra or run-time results"
readme = "README.md"
requires-python = ">=3"
license = {file = "LICENSE"}
keywords = ["polyspace", "report", "excel", "misra"]
authors = [
{name = "CAT Lab"}
]
maintainers = [
{name = "CAT Lab"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3"
]
# https://packaging.python.org/discussions/install-requires-vs-requirements/
dependencies = [
"XlsxWriter",
"html2text",
"striprtf"
]
[project.urls]
"Homepage" = "https://github.com/cnescatlab/polyspace-report2excel"
"Bug Reports" = "https://github.com/cnescatlab/polyspace-report2excel/issues"
[project.scripts]
p2e = "p2e:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"