-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·51 lines (50 loc) · 1.39 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="mvdatasets",
version="1.0.0",
description="Standardized DataLoaders for 3D Computer Vision",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/autonomousvision/mvdatasets",
author="Stefano Esposito",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
# main
"gdown>=5.2.0",
"flake8>=7.1.1",
"black>=24.8.0",
"ffmpeg>=1.4.0",
"pyyaml>=6.0",
"numpy>=1.21.6",
"tqdm>=4.67.1",
"torch>=1.13.1",
"pillow>=9.5.0",
"torchvision>=0.14.1",
"iopath>=0.1.10",
"matplotlib>=3.5.3",
"jupyter>=1.1.1",
"opencv-python>=4.11.0.86",
"open3d>=0.18.0",
"rich>=13.8.1",
"tyro>=0.9.11",
"pycolmap@git+https://github.com/rmbrualla/pycolmap@cc7ea4b7301720ac29287dbe450952511b32125e",
],
extras_require={
"tests": [
# tests
"pytest"
],
"docs": [
# docs
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-mermaid",
"sphinxcontrib-bibtex",
"sphinxcontrib-osexample",
"myst-parser",
"pre-commit",
],
},
python_requires=">=3.8",
)