29 lines
830 B
TOML
29 lines
830 B
TOML
[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)",
|
|
"scikit-image (>=0.25.2,<0.26.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"
|
|
matplotlib = "^3.10.6"
|