diff --git a/recipes/platformdirs/meta.yaml b/recipes/platformdirs/meta.yaml new file mode 100644 index 0000000000000..dcf69add35292 --- /dev/null +++ b/recipes/platformdirs/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "platformdirs" %} +{% set version = "2.2.0" %} + + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/platformdirs-{{ version }}.tar.gz + sha256: 632daad3ab546bd8e6af0537d09805cec458dce201bccfe23012df73332e181e + +build: + number: 0 + noarch: python + script: {{ PYTHON }} -m pip install . -vv + +requirements: + host: + - pip + - python >=3.6 + run: + - python >=3.6 + +test: + imports: + - platformdirs + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/platformdirs/platformdirs + summary: A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". + dev_url: https://github.com/platformdirs/platformdirs + license: MIT + license_file: LICENSE.txt + +extra: + recipe-maintainers: + - adament + - gaborbernat