source:
sasview/build_tools/conda/py2app/meta.yaml
@
144e032a
Last change on this file since 144e032a was 42b65f4, checked in by Peter Parker, 10 years ago | |
---|---|
|
|
File size: 1.7 KB |
Line | |
---|---|
1 | package: |
2 | name: py2app |
3 | version: !!str 0.9 |
4 | |
5 | source: |
6 | fn: py2app-0.9.tar.gz |
7 | url: https://pypi.python.org/packages/source/p/py2app/py2app-0.9.tar.gz |
8 | md5: eb31f5fefcf80aeaf4d02ec68d5978b4 |
9 | # patches: |
10 | # List any patch files here |
11 | # - fix.patch |
12 | |
13 | build: |
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 | # - py2app = py2app:main |
20 | # |
21 | # Would create an entry point called py2app that calls py2app.main() |
22 | |
23 | - py2applet = py2app.script_py2applet:main |
24 | |
25 | # If this is a new build for the same version, increment the build |
26 | # number. If you do not include this key, it defaults to 0. |
27 | # number: 1 |
28 | |
29 | requirements: |
30 | build: |
31 | - python |
32 | - setuptools |
33 | - altgraph >=0.12 |
34 | - modulegraph >=0.12 |
35 | - macholib >=1.5 |
36 | |
37 | run: |
38 | - python |
39 | - altgraph >=0.12 |
40 | - modulegraph >=0.12 |
41 | - macholib >=1.5 |
42 | |
43 | test: |
44 | # Python imports |
45 | imports: |
46 | - py2app |
47 | - py2app.apptemplate |
48 | - py2app.bootstrap |
49 | - py2app.bundletemplate |
50 | - py2app.converters |
51 | - py2app.recipes |
52 | - py2app.recipes.PIL |
53 | |
54 | commands: |
55 | # You can put test commands to be run here. Use this to test that the |
56 | # entry points work. |
57 | |
58 | - py2applet --help |
59 | |
60 | # You can also put a file called run_test.py in the recipe that will be run |
61 | # at test time. |
62 | |
63 | # requires: |
64 | # Put any additional test requirements here. For example |
65 | # - nose |
66 | |
67 | about: |
68 | home: http://bitbucket.org/ronaldoussoren/py2app |
69 | license: MIT License |
70 | summary: 'Create standalone Mac OS X applications with Python' |
71 | |
72 | # See |
73 | # http://docs.continuum.io/conda/build.html for |
74 | # more information about meta.yaml |
Note: See TracBrowser
for help on using the repository browser.