trnslator/meta.yaml

52 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2020-11-02 10:42:25 -05:00
{% set name = "trnslator" %}
2020-06-23 13:07:31 -04:00
{% 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:
2020-11-02 10:42:25 -05:00
- trnslator
2020-06-23 13:07:31 -04:00
about:
2020-11-02 10:42:25 -05:00
home: https://github.com/louisleroy5/trnslator
2020-06-23 13:07:31 -04:00
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'Convert IDF file (EnergyPlus) to BUI file (TRNBuild)'
description: |
2020-11-02 10:42:25 -05:00
trnslator is a Python package.
doc_url: https://trnslator.readthedocs.io
dev_url: https://github.com/louisleroy5/trnslator
2020-06-23 13:07:31 -04:00
extra:
recipe-maintainers:
- louisleroy5