-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.19 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
41
42
43
44
45
[project]
name = "dita-convert"
authors = [{name = "Jaromir Hradilek", email="[email protected]"}]
description = "Convert a generic DITA topic to a specialized concept, task, or reference."
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Documentation",
]
dependencies = [
"lxml >= 4.9.2",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/jhradilek/dita-custom-xslt"
Repository = "https://github.com/jhradilek/dita-custom-xslt"
Issues = "https://github.com/jhradilek/dita-custom-xslt/issues"
[project.scripts]
dita-convert = "dita.convert.cli:parse_args"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "dita.convert.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"dita.convert.xslt" = ["*.xsl"]
[tool.pytest.ini_options]
testpaths = "test"
verbosity_assertions = 2
verbosity_test_cases = 2