source: sasview/build_tools/conda/xhtml2pdf/meta.yaml @ 55bde35

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 55bde35 was 55bde35, checked in by Peter Parker, 9 years ago

Instead just use 'conda skeleton pypi' to generate all recipes.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1package:
2  name: xhtml2pdf
3  version: !!str 0.0.6
4
5source:
6  fn: xhtml2pdf-0.0.6.tar.gz
7  url: https://pypi.python.org/packages/source/x/xhtml2pdf/xhtml2pdf-0.0.6.tar.gz
8  md5: dee3703f768efcba26eab81a4207c2c8
9#  patches:
10   # List any patch files here
11   # - fix.patch
12
13build:
14  #preserve_egg_dir: True
15  entry_points:
16    # Put any entry points (scripts to be generated automatically) here. The
17    # syntax is module:function.  For example
18    #
19    # - xhtml2pdf = xhtml2pdf:main
20    #
21    # Would create an entry point called xhtml2pdf that calls xhtml2pdf.main()
22
23    - pisa = xhtml2pdf.pisa:command
24    - xhtml2pdf = xhtml2pdf.pisa:command
25
26  # If this is a new build for the same version, increment the build
27  # number. If you do not include this key, it defaults to 0.
28  # number: 1
29
30requirements:
31  build:
32    - python
33    - setuptools
34    - html5lib
35    - pypdf2
36    - pillow
37    - reportlab >=2.2
38
39  run:
40    - python
41    - html5lib
42    - pypdf2
43    - pillow
44    - reportlab >=2.2
45
46test:
47  # Python imports
48  imports:
49    - xhtml2pdf
50    - xhtml2pdf.w3c
51
52  commands:
53    # You can put test commands to be run here.  Use this to test that the
54    # entry points work.
55
56    - pisa --help
57    - xhtml2pdf --help
58
59  # You can also put a file called run_test.py in the recipe that will be run
60  # at test time.
61
62  # requires:
63    # Put any additional test requirements here.  For example
64    # - nose
65
66about:
67  home: http://www.xhtml2pdf.com
68  license:  Apache Software License
69  summary: 'PDF generator using HTML and CSS'
70
71# See
72# http://docs.continuum.io/conda/build.html for
73# more information about meta.yaml
Note: See TracBrowser for help on using the repository browser.