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

Added dataconf as a package. #16841

Merged
merged 3 commits into from
Nov 10, 2021
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
47 changes: 47 additions & 0 deletions recipes/dataconf/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "dataconf" %}
{% set version = "1.2.0" %}


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

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

build:
number: 0
noarch: python
entry_points:
- dataconf = dataconf.cli:run
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- pip
- poetry
- python >=3.8
run:
- pyhocon >=0.3.54,<0.4.0
- python >=3.8
- python-dateutil >=2.8.1,<3.0.0

test:
imports:
- dataconf
commands:
- pip check
- dataconf --help
requires:
- pip

about:
home: https://github.com/zifeo/dataconf
summary: Simple dataclasses configuration management for Python with hocon/json/yaml/properties/env-vars/dict support.
license: MPL-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan