Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipe for ecoinvent_interface #24806

Merged
merged 3 commits into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions recipes/ecoinvent_interface/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "ecoinvent_interface" %}
{% set version = "2.4.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/ecoinvent_interface-{{ version }}.tar.gz
sha256: 0075f93ff7125d77e3ad2c8d046b297069d18dac83261230589b47d0c1ab0fc7

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.9
- setuptools >=68.0
- pip
run:
- python >=3.9
- lxml
- platformdirs
- py7zr
- pydantic-settings
- pyecospold
- requests
- tqdm

test:
imports:
- ecoinvent_interface
commands:
- pip check
requires:
- pip

about:
home: https://github.com/brightway-lca/ecoinvent_interface/
summary: Unofficial client for interfacing with ecoinvent database
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- cmutel
Loading