Init proj
This commit is contained in:
26
pyproject.toml
Normal file
26
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user