-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
55 lines (50 loc) · 1.17 KB
/
pyproject.toml
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 = ["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 = "cutie"
version = "1.0.0"
authors = [{ name = "Rex Cheng", email = "[email protected]" }]
description = ""
readme = "README.md"
requires-python = ">=3.8"
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',
]
[tool.hatch.build.targets.wheel]
packages = ["cutie"]
[project.urls]
"Homepage" = "https://github.com/hkchengrex/Cutie"
"Bug Tracker" = "https://github.com/hkchengrex/Cutie/issues"