-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.49 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
[build-system]
requires = [
"setuptools>=69",
"wheel",
"cython>=3.0.10",
"numpy>=2"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyface-docsaid"
dynamic = ["version"]
description = "An Integrated Python Package for Face Analysis."
readme = "README.md"
license = { text = "Apache License 2.0" }
requires-python = ">=3.10"
authors = [
{ name = "kunkunlin", email = "jacklin@cmlab.csie.ntu.edu.tw" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numpy>=2", # 執行期也支援 NumPy 2
"scikit-image",
"capybara-docsaid>=0.12.0",
"huggingface_hub"
]
[project.urls]
Homepage = "https://github.com/DocsaidLab/PyFace"
Repository = "https://github.com/DocsaidLab/PyFace"
Issues = "https://github.com/DocsaidLab/PyFace/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pyface*"]
exclude = ["demo", "tests", "docs", ".github", "docker"]
[tool.setuptools.dynamic]
version = { attr = "pyface.__version__" }
[tool.cibuildwheel]
build = ["cp310-*", "cp312-*"]
skip = ["*-win32", "*-manylinux_i686", "*-musllinux_*"]