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 pyscaffoldext-markdown #14180

Merged
merged 13 commits into from
Mar 9, 2021
52 changes: 52 additions & 0 deletions recipes/pyscaffoldext-dsproject/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{% set name = "pyscaffoldext-dsproject" %}
{% set version = "0.6" %}


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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyscaffoldext-dsproject-{{ version }}.tar.gz
sha256: c8b072f2c90b5966ca11669dae8744dbe53285f6883759a9e845e4176176abfd

build:
number: 0
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- pip
- python
- setuptools_scm
run:
- importlib-metadata
- pyscaffold >=4.0b4,<5.0a0
- pyscaffoldext-markdown >=0.4b2,<1.0a0
- python

# For an implementation of unit tests which work except for Windows, see
# https://github.com/conda-forge/staged-recipes/commit/f3c5e9f
test:
imports:
- pyscaffoldext
- pyscaffoldext.dsproject
commands:
- pip check
# Just do a simple check here. Maybe in the future we can at least do something
# like `putup --pretend --dsproject targetdir`, but currently git must be configured.
- putup --help
requires:
- pip

about:
home: https://github.com/pyscaffold/pyscaffoldext-dsproject
summary: PyScaffold extension for Data Science projects
dev_url: https://github.com/pyscaffold/pyscaffoldext-dsproject/
license: MIT
license_file: LICENSE.txt

extra:
recipe-maintainers:
- maresb
- FlorianWilhelm
54 changes: 54 additions & 0 deletions recipes/pyscaffoldext-markdown/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "pyscaffoldext-markdown" %}
{% set version = "0.4" %}


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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyscaffoldext-markdown-{{ version }}.tar.gz
sha256: e3b93316619808f00f04b15d83fc8e938a9ef3e7fab81803a087159b6fcdab57

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv

requirements:
host:
- pip
- python >=3.6
- setuptools_scm
run:
- importlib-metadata
- pyscaffold >=4.0b4,<5.0a0
- python >=3.6
- recommonmark
- wheel >=0.31

# For an implementation of unit tests which work except for Windows, see
# https://github.com/conda-forge/staged-recipes/commit/f3c5e9f
test:
imports:
- pyscaffoldext
- pyscaffoldext.markdown
commands:
- pip check
# Just do a simple check here. Maybe in the future we can at least do something
# like `putup --pretend --markdown targetdir`, but currently git must be configured.
- putup --help
requires:
- pip

about:
home: https://github.com/pyscaffold/pyscaffoldext-markdown
summary: PyScaffold extension which uses Markdown instead of reStructuredText
dev_url: https://github.com/pyscaffold/pyscaffoldext-markdown/
license: MIT
license_file: LICENSE.txt

extra:
recipe-maintainers:
- maresb
- FlorianWilhelm