diff --git a/meta.yaml b/meta.yaml new file mode 100644 index 0000000..28e7137 --- /dev/null +++ b/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "smplotlib" %} +{% set version = "0.0.9" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + git_url: https://github.com/AstroJacobLi/smplotlib.git + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.7 + - setuptools >=42.0 + - wheel + - pip + run: + - python >=3.7 + - numpy + - scipy + - matplotlib>=3.3.4 + +test: + imports: + - smplotlib + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/AstroJacobLi/smplotlib + license: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - AstroJacobLi