forked from airmang/python-hwpx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (74 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
86 lines (74 loc) · 2.08 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-hwpx"
version = "1.9"
description = "Hancom HWPX 패키지를 로드하고 편집하기 위한 Python 유틸리티 모음"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "python-hwpx Maintainers" },
]
keywords = ["hwp", "hwpx", "hancom", "opc", "xml"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup :: XML",
]
dependencies = [
"lxml>=4.9,<6",
]
[project.optional-dependencies]
dev = [
"build>=1.0",
"twine>=4.0",
"pytest>=7.4",
]
test = [
"pytest>=7.4",
"pytest-cov>=5.0",
]
typecheck = [
"mypy>=1.10",
"pyright>=1.1.390",
]
[project.urls]
Homepage = "https://github.com/airmang/python-hwpx"
Documentation = "https://github.com/airmang/python-hwpx/tree/main/docs"
Issues = "https://github.com/airmang/python-hwpx/issues"
[project.scripts]
hwpx-validate = "hwpx.tools.validator:main"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["hwpx*"]
[tool.setuptools.package-data]
"hwpx" = ["py.typed"]
"hwpx.tools" = ["_schemas/*.xsd"]
"hwpx.data" = ["Skeleton.hwpx"]
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "-ra"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
files = ["src/hwpx/document.py", "src/hwpx/oxml/document.py"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["hwpx.document", "hwpx.oxml.document"]
ignore_errors = true
[tool.pyright]
include = ["src/hwpx/document.py", "src/hwpx/oxml/document.py"]
pythonVersion = "3.10"
typeCheckingMode = "off"
reportMissingTypeStubs = false