forked from princeton-vl/infinigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update test import mechanism to use better specified paths * Move nonessential tools out of the infinigen package dir * Dont build terrain etc during tests * temp commit txt package data * Fix tests and runtime errors when running as a package * Refactor config loading, fix relative paths in config, html, json pallette * Move examples to infinigen_examples, test execute_tasks, make all config imports relative * Add manifest.in, simplify pyproject.toml * Convert surface registry to relative importlib style Remove old docs, single-source the package version Fix misc test warnings, disable egregiously slow single asset tests * Final painstaking fix for pyproject.toml to include all compiled files & data files
- Loading branch information
1 parent
eaaa816
commit cba91ca
Showing
154 changed files
with
756 additions
and
1,087 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
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
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,15 @@ | ||
# Inspired by https://github.com/pytorch/pytorch/blob/main/MANIFEST.in | ||
|
||
# Explanation: files denoted here are excluded from `python setup.py sdist`, | ||
# but some are still explicitly included in the .whl via | ||
|
||
recursive-include infinigen *.* | ||
recursive-include tests *.* | ||
recursive-include docs *.* | ||
recursive-include infinigen_examples *.* | ||
|
||
prune */__pycache__ | ||
prune infinigen/datagen/customgt/build/* | ||
prune infinigen/datagen/customgt/dependencies/* | ||
|
||
global-exclude *.o *.so *.pyc .git *.png |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 +1,9 @@ | ||
import pkg_resources | ||
from pathlib import Path | ||
__version__ = pkg_resources.get_distribution(Path(__file__).parent.name).version | ||
import logging | ||
|
||
__version__ = "1.1.0" | ||
|
||
logging.basicConfig( | ||
format='[%(asctime)s.%(msecs)03d] [%(name)s] [%(levelname)s] | %(message)s', | ||
level=logging.INFO, | ||
datefmt='%H:%M:%S' | ||
) |
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
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
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
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
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
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
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
Oops, something went wrong.