-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name="threestudio", | ||
version='"0.2.3"', # the current version of your package | ||
packages=find_packages(), # automatically discover all packages and subpackages | ||
url="https://github.com/threestudio-project/threestudio", # replace with the URL of your project | ||
author="Yuan-Chen Guo and Ruizhi Shao and Ying-Tian Liu and Christian Laforte and Vikram Voleti and Guan Luo and Chia-Hao Chen and Zi-Xin Zou and Chen Wang and Yan-Pei Cao and Song-Hai Zhang", # replace with your name | ||
author_email="[email protected]", # replace with your email | ||
description="threestudio is a unified framework for 3D content creation from text prompts, single images, and few-shot images, by lifting 2D text-to-image generation models.", # replace with a brief description of your project | ||
install_requires=[ | ||
# list of packages your project depends on | ||
# you can specify versions as well, e.g. 'numpy>=1.15.1' | ||
], | ||
classifiers=[ | ||
# classifiers help users find your project by categorizing it | ||
# for a list of valid classifiers, see https://pypi.org/classifiers/ | ||
"License :: Apache-2.0", | ||
"Programming Language :: Python :: 3", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__modules__ = {} | ||
__version__ = "0.2.2" | ||
__version__ = "0.2.3" | ||
|
||
|
||
def register(name): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.