mirror of
https://github.com/louisleroy5/trnslator.git
synced 2024-11-14 16:20:31 -05:00
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
{% set name = "trnslator" %}
|
|
{% set version = "1.0.1" %}
|
|
{% set sha256 = "3e97f799769469412b12b8d71cc2342d0c93c9f6ea4ca36366c415eef9fbe344" %}
|
|
|
|
package:
|
|
name: {{ name }}
|
|
version: {{ version }}
|
|
|
|
#source:
|
|
# fn: {{ name }}-{{ version }}.tar.gz
|
|
# url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
|
|
# sha256: {{ sha256 }}
|
|
|
|
build:
|
|
noarch: python
|
|
number: 0
|
|
script: python -m pip install --no-deps --ignore-installed .
|
|
|
|
requirements:
|
|
build:
|
|
- python
|
|
- pip
|
|
run:
|
|
- python
|
|
- requests
|
|
- numpy
|
|
- pandas
|
|
- matplotlib
|
|
- shapely
|
|
- descartes
|
|
- geopy
|
|
- rtree
|
|
- folium
|
|
|
|
test:
|
|
imports:
|
|
- trnslator
|
|
|
|
about:
|
|
home: https://github.com/louisleroy5/trnslator
|
|
license: MIT
|
|
license_family: MIT
|
|
license_file: LICENSE.txt
|
|
summary: 'Convert IDF file (EnergyPlus) to BUI file (TRNBuild)'
|
|
description: |
|
|
trnslator is a Python package.
|
|
doc_url: https://trnslator.readthedocs.io
|
|
dev_url: https://github.com/louisleroy5/trnslator
|
|
|
|
extra:
|
|
recipe-maintainers:
|
|
- louisleroy5 |