Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py #74

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
filelock
Pillow
torch
fire
humanize
requests
tqdm
matplotlib
scikit-image
scipy
numpy
blobfile
pyyaml
ipywidgets
clip @ git+https://github.com/openai/CLIP.git
46 changes: 15 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,20 @@
from setuptools import setup
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()

with open("requirements.txt", 'r', encoding='utf-8') as f:
requirements = f.read()

setup(
name="shap-e",
packages=[
"shap_e",
"shap_e.diffusion",
"shap_e.models",
"shap_e.models.generation",
"shap_e.models.nerf",
"shap_e.models.nerstf",
"shap_e.models.nn",
"shap_e.models.stf",
"shap_e.models.transmitter",
"shap_e.rendering",
"shap_e.rendering.blender",
"shap_e.rendering.raycast",
"shap_e.util",
],
install_requires=[
"filelock",
"Pillow",
"torch",
"fire",
"humanize",
"requests",
"tqdm",
"matplotlib",
"scikit-image",
"scipy",
"numpy",
"blobfile",
"clip @ git+https://github.com/openai/CLIP.git",
],
author="OpenAI",
install_requires=requirements,
license='MIT License',
description='This is the official code and model release for Shap-E: Generating Conditional 3D Implicit Functions.',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/openai/shap-e',
packages=find_packages(),

)
Empty file.