-
Notifications
You must be signed in to change notification settings - Fork 410
/
setup.cfg
71 lines (65 loc) · 1.18 KB
/
setup.cfg
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[bumpversion]
current_version = 1.4.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)?
serialize =
{major}.{minor}.{patch}
[bumpversion:file:src/dot/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[metadata]
name = dot
version = attr: dot.__version__
author = attr: dot.__author__
description = attr: dot.__doc__
long_description = file: README.md
log_description_content_type = text/markdown
url = attr: dot.__url__
license = BSD 3-Clause License
classifiers =
Programming Language :: Python :: 3.8
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8,<3.9
install_requires =
click
dlib
face_alignment==1.4.1
kornia
mediapipe
numpy
onnxruntime-gpu==1.18.0
opencv-contrib-python
opencv_python
Pillow
protobuf
PyYAML
requests
scikit_image
scipy
torch==2.0.1
torchvision==0.15.2
customtkinter
pytest
[options.extras_require]
dev =
black
bumpversion
flake8
ipdb
ipython
isort==5.12.0
pre-commit
pyinstaller
pytest
pytest-cov
types-PyYAML
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
dot = dot.__main__:main
dot-ui = dot.ui.ui:main