-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (48 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "caj2pdf-restructured"
dynamic = ["version", "entry-points"]
description = "caj2pdf 项目的重新组织,方便打包与安装"
authors = [
{ name = "Hin-Tak Leung", email = "htl10@users.sourceforge.net" },
{ name = "JeziL", email = "wangjinlithu@gmail.com" },
]
maintainers = [{ name = "zombie110year", email = "zombie110year@outlook.com" }]
dependencies = ["imagesize==1.3.0", "PyPDF2==2.2.0"]
requires-python = ">=3.10"
readme.content-type = "text/markdown"
readme.file = "README.md"
license = { text = "GLWTPL" }
classifiers = [
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
keywords = ["cnki", "caj", "pdf"]
[project.urls]
repository = "https://github.com/zombie110year/caj2pdf-restructured/"
[project.scripts]
caj2pdf = "caj2pdf.cli:main"
caj2pdf-ec = "caj2pdf.exe_convert:main"
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm]
version = { source = "file", path = "caj2pdf/version.py" }
[tool.pdm.build]
excludes = ["tests/**"]
setup-script = "build.py"
run-setuptools = true
[[tool.pdm.source]]
name = "pypi"
url = "https://mirrors.aliyun.com/pypi/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
dev = [
"black>=22.10.0",
"isort>=5.10.1",
"flake8>=5.0.4",
"setuptools>=65.6.0",
]
[tool.setuptools.package-data]
caj2pdf = ["*.dll", "*.so"]