Init proj

This commit is contained in:
2025-09-26 13:40:37 +08:00
parent 90c8751d40
commit 634e5b016e
4 changed files with 28 additions and 1 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[project]
name = "falign"
version = "0.1.0"
description = "Preprocess tool for aligning human face images."
authors = [
{name = "JingYu Ning",email = "jrunkening@noreply.localhost"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = "~3.13"
dependencies = [
"numpy (>=2.3.3,<3.0.0)",
"face-alignment (>=1.4.1,<2.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
torch = [
{url = "https://download.pytorch.org/whl/cu126/torch-2.8.0%2Bcu126-cp313-cp313-manylinux_2_28_x86_64.whl", platform = "linux"},
{url = "https://download.pytorch.org/whl/cu129/torch-2.8.0%2Bcu129-cp313-cp313-win_amd64.whl", platform = "win32"},
]
pytest = "^8.4.2"