diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-08-20 14:19:53 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 14:19:53 -0400 | 
| commit | 11a5df5262bed828a99bdf1ce8eef8ad715346c3 (patch) | |
| tree | 2daa9d77346087058a92113f5e3ba3fb011c73bf /pypdf2 | |
| parent | 5c2463714786b2f3c25d5b5844fbc5f82db4d6ca (diff) | |
| download | astroconda-contrib-11a5df5262bed828a99bdf1ce8eef8ad715346c3.tar.gz | |
Add pypdf2 dependency for use by drizzlepac (#667)
Diffstat (limited to 'pypdf2')
| -rw-r--r-- | pypdf2/meta.yaml | 36 | 
1 files changed, 36 insertions, 0 deletions
diff --git a/pypdf2/meta.yaml b/pypdf2/meta.yaml new file mode 100644 index 0000000..7e3d708 --- /dev/null +++ b/pypdf2/meta.yaml @@ -0,0 +1,36 @@ +{% set name = "PyPDF2" %} +{% set version = "1.26.0" %} + +package: +  name: {{ name|lower }} +  version: {{ version }} + +source: +  url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz +  sha256: e28f902f2f0a1603ea95ebe21dff311ef09be3d0f0ef29a3e44a932729564385 + +build: +  noarch: python +  number: 2 +  script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vv" + +requirements: +  host: +    - python +    - pip +  run: +    - python + +test: +  imports: +    - PyPDF2 + +about: +  home: http://mstamy2.github.com/PyPDF2 +  license: BSD-3-Clause +  # LICENSE not in MANIFEST.in - see https://github.com/mstamy2/PyPDF2/pull/288 +  license_file: LICENSE +  license_family: BSD +  summary: 'A utility to read and write PDFs with Python' +  doc_url: http://pybrary.net/pyPdf/pythondoc-pyPdf.pdf.html +  dev_url: https://github.com/mstamy2/PyPDF2/  | 
