65 lines
1.4 KiB
TOML
65 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.yapf]
|
|
based_on_style = "pep8"
|
|
indent_width = 4
|
|
column_limit = 100
|
|
|
|
[project]
|
|
name = "matanyone2"
|
|
version = "1.0.0"
|
|
authors = [{ name = "Peiqing Yang", email = "peiqingyang99@outlook.com" }]
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
'cython',
|
|
'gitpython >= 3.1',
|
|
'thinplate@git+https://github.com/cheind/py-thin-plate-spline',
|
|
'hickle >= 5.0',
|
|
'tensorboard >= 2.11',
|
|
'numpy >= 1.21',
|
|
'Pillow >= 9.5',
|
|
'opencv-python >= 4.8',
|
|
'scipy >= 1.7',
|
|
'pycocotools >= 2.0.7',
|
|
'tqdm >= 4.66.1',
|
|
'gradio >= 3.34',
|
|
'gdown >= 4.7.1',
|
|
'einops >= 0.6',
|
|
'hydra-core >= 1.3.2',
|
|
'PySide6 >= 6.2.0',
|
|
'charset-normalizer >= 3.1.0',
|
|
'netifaces >= 0.11.0',
|
|
'cchardet >= 2.1.7',
|
|
'easydict',
|
|
'av >= 0.5.2',
|
|
'requests',
|
|
'pyqtdarktheme',
|
|
'imageio == 2.25.0',
|
|
'imageio[ffmpeg]',
|
|
'huggingface_hub == 0.36.2',
|
|
'safetensors',
|
|
'xlsxwriter',
|
|
'kornia',
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["matanyone2"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/pq-yang/MatAnyone2"
|
|
"Bug Tracker" = "https://github.com/pq-yang/MatAnyone2/issues"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "."}
|