-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
66 lines (62 loc) · 1.6 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
[metadata]
name = pupil_labs_dense_pose
description = A project to remap gaze onto a DensePose estimate.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/pupil-labs/dense-pose-module
author = Pupil Labs GmbH
author_email = info@pupil-labs.com
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
[options]
packages = find_namespace:
install_requires =
torch==2.0.1; sys_platform != "darwin"
torch==2.0.1; sys_platform == "darwin"
torchvision==0.15.2
Pillow
av
#detectron2@git+https://github.com/johnnynunez/detectron2.git
#detectron2-densepose@git+https://github.com/johnnynunez/detectron2@main#subdirectory=projects/DensePose
numpy
opencv-python
pandas
pupil-labs-dynamic-rim
rich
importlib-metadata;python_version<"3.8"
python_requires = >=3.8
include_package_data = true
package_dir =
=src
[options.packages.find]
where = src
exclude =
build*
dist*
docs*
tests*
[options.entry_points]
console_scripts =
pl-densepose = pupil_labs.dense_pose.__main__:main
[options.extras_require]
docs =
jaraco.packaging
rst.linker
sphinx
sphinx-toolbox
furo
testing =
pytest>=6
pytest-checkdocs>=2.4
pytest-cov
pytest-enabler>=1.3
pytest-mypy>=0.9.1;python_implementation != "PyPy"