mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-20 06:10:34 +08:00
Build wheels for s3
Summary: For Linux, instead of uploading wheels to PyPI which will only work with one particular version of PyTorch and CUDA, from the next release we will store a range of built wheels on S3. Reviewed By: nikhilaravi Differential Revision: D26209398 fbshipit-source-id: 945a6907b78807e1eedb25007f87f90bbf59f80e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
3463f418b8
commit
e0753f0b0d
6
setup.py
6
setup.py
@@ -132,8 +132,10 @@ setup(
|
||||
url="https://github.com/facebookresearch/pytorch3d",
|
||||
description="PyTorch3D is FAIR's library of reusable components "
|
||||
"for deep Learning with 3D data.",
|
||||
packages=find_packages(exclude=("configs", "tests", "tests.*")),
|
||||
install_requires=["torchvision>=0.4", "fvcore", "iopath"],
|
||||
packages=find_packages(
|
||||
exclude=("configs", "tests", "tests.*", "docs.*", "projects.*")
|
||||
),
|
||||
install_requires=["fvcore", "iopath"],
|
||||
extras_require={
|
||||
"all": ["matplotlib", "tqdm>4.29.0", "imageio", "ipywidgets"],
|
||||
"dev": ["flake8", "isort", "black==19.3b0"],
|
||||
|
||||
Reference in New Issue
Block a user