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 termgraph #10028

Merged
merged 2 commits into from Oct 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
42 changes: 42 additions & 0 deletions recipes/termgraph/meta.yaml
@@ -0,0 +1,42 @@
{% set name = "termgraph" %}
{% set version = "0.2.0" %}

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

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

build:
number: 0
noarch: python
entry_points:
- termgraph=termgraph.termgraph:main
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- colorama

test:
imports:
- termgraph
commands:
- termgraph --help

about:
home: "https://github.com/mkaz/termgraph"
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: "a python command-line tool which draws basic graphs in the terminal"

extra:
recipe-maintainers:
- xhochy