-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.22 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
[project]
name = "itextpy"
version = "9.1.0"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pythonnet>=3.0", # Essential pythonnet dependency
"netstandard-stubs>=2.0,<2.1", # Typing stubs for .NET
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C#",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
license = "AGPL-3.0"
license-files = ["LICENSE"]
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.custom]
path = "scripts/hatch_build.py"
[tool.hatch.build.targets.sdist]
ignore-vcs = true
include = [
"/itextpy/binaries/**/*.dll",
"/itextpy/binaries/.published",
"/itextpy/**/*.py",
"/itextpy/.generated",
"/iText-stubs/**/*.pyi",
"/iText-stubs/.generated",
"/scripts/",
"/LICENSE",
"/README.md",
"/pyproject.toml",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = [
"itextpy",
"iText-stubs",
]
exclude = [
".*",
"*.bak",
]