From 3f0aacd5fc0a7e3400ecfffb32513c97685425c2 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Mon, 1 Apr 2019 14:33:32 -0400 Subject: Add mechanicalsoup and yolk3k skeleton recipes. --- mechanicalsoup/meta.yaml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ yolk3k/meta.yaml | 42 +++++++++++++++++++++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 mechanicalsoup/meta.yaml create mode 100644 yolk3k/meta.yaml diff --git a/mechanicalsoup/meta.yaml b/mechanicalsoup/meta.yaml new file mode 100644 index 0000000..541a831 --- /dev/null +++ b/mechanicalsoup/meta.yaml @@ -0,0 +1,54 @@ +{% set name = "mechanicalsoup" %} +{% set version = "0.11.0" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: +# url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + url: https://files.pythonhosted.org/packages/58/96/5a3b6814d4d7a079b61295d9701be0515eab25a5219257f098dca4282502/MechanicalSoup-0.11.0.tar.gz + sha256: 2712ec0f3087cbc719c6c3dfb317a05800ff14fcdbfa67a2f9f6e07226e7a94c + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " + +requirements: + host: + - beautifulsoup4 + - lxml + - pip + - python + - requests >=2.0 + - six >=1.4 + run: + - beautifulsoup4 + - lxml + - python + - requests >=2.0 + - six >=1.4 + +test: + imports: + - mechanicalsoup + #requires: + # - pytest + # - pytest-cov + # - pytest-flake8 + # - pytest-httpbin + # - pytest-mock + # - requests_mock >=1.3.0 + +about: + home: https://mechanicalsoup.readthedocs.io/ + license: MIT + license_family: MIT + license_file: + summary: A Python library for automating interaction with websites + doc_url: + dev_url: + +extra: + recipe-maintainers: + - your-github-id-here diff --git a/yolk3k/meta.yaml b/yolk3k/meta.yaml new file mode 100644 index 0000000..adf7d34 --- /dev/null +++ b/yolk3k/meta.yaml @@ -0,0 +1,42 @@ +{% set name = "yolk3k" %} +{% set version = "0.9" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: cf8731dd0a9f7ef50b5dc253fe0174383e3fed295a653672aa918c059eef86ae + +build: + number: 0 + entry_points: + - yolk = yolk.cli:main + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " + +requirements: + host: + - pip + - python + run: + - python + +test: + imports: + - yolk + commands: + - yolk --help + +about: + home: https://github.com/myint/yolk + license: BSD + license_family: BSD + license_file: + summary: Command-line tool for querying PyPI and Python packages installed on your system. + doc_url: + dev_url: + +extra: + recipe-maintainers: + - your-github-id-here -- cgit