diff --git a/meta.yaml b/meta.yaml new file mode 100644 index 00000000..42e206bc --- /dev/null +++ b/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "tksheet" %} +{% set version = "6.2.3" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://github.com/ragardner/tksheet/releases/download/{{ version }}/tksheet-{{ version }}.tar.gz + url: https://github.com/ragardner/tksheet/archive/{{ version }}.tar.gz + sha256: c370e2a1f2c63f364271d44fd811ab2dfbdba204ba6f9cb3bdb1a82b99cc0c65 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.6 + - pip + run: + - python >=3.6 + - tk >=8.6 + +test: + imports: + - tksheet + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/ragardner/tksheet + summary: Python 3.6+ tkinter table widget for displaying tabular data + description: | + A Tkinter spreadsheet widget for Python 3.6+. + license: MIT + license_family: MIT + license_file: LICENSE.txt + doc_url: https://github.com/ragardner/tksheet/wiki + dev_url: https://github.com/ragardner/tksheet + +extra: + recipe-maintainers: + - ragardner