├── .github └── workflows │ ├── ci.yaml │ └── dependency-release.yaml ├── .gitignore ├── .releaserc.json ├── CI_STATUS.md ├── LICENSE ├── README.md ├── ci-requirements.txt ├── deploy.sh ├── dev-requirements.txt ├── gradients.png ├── installer.gh ├── lbt_grasshopper └── README.md ├── pass_tests.py ├── requirements.txt ├── ruby-requirements.txt ├── setup.py ├── uninstaller.gh └── versioning ├── export_documentation.gh └── increment_components.gh /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/.github/workflows/dependency-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CI_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/CI_STATUS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/README.md -------------------------------------------------------------------------------- /ci-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/ci-requirements.txt -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/deploy.sh -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/gradients.png -------------------------------------------------------------------------------- /installer.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/installer.gh -------------------------------------------------------------------------------- /lbt_grasshopper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/lbt_grasshopper/README.md -------------------------------------------------------------------------------- /pass_tests.py: -------------------------------------------------------------------------------- 1 | """Disregard test running in CI for now.""" 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/requirements.txt -------------------------------------------------------------------------------- /ruby-requirements.txt: -------------------------------------------------------------------------------- 1 | honeybee-openstudio-gem==2.38.22 2 | lbt-measures==0.3.1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/setup.py -------------------------------------------------------------------------------- /uninstaller.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/uninstaller.gh -------------------------------------------------------------------------------- /versioning/export_documentation.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/versioning/export_documentation.gh -------------------------------------------------------------------------------- /versioning/increment_components.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/lbt-grasshopper/HEAD/versioning/increment_components.gh --------------------------------------------------------------------------------