source: sasview/build_tools/conda/modulegraph/meta.yaml

ESS_GUI
Last change on this file was 22475e6, checked in by Peter Parker, 9 years ago

Conda made a bad job of this one. Remove broken bits.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1package:
2  name: modulegraph
3  version: !!str 0.12
4
5source:
6  fn: modulegraph-0.12.tar.gz
7  url: https://pypi.python.org/packages/source/m/modulegraph/modulegraph-0.12.tar.gz
8  md5: 188bfb66058f7f446f04145d0ac63359
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    # - modulegraph = modulegraph:main
20    #
21    # Would create an entry point called modulegraph that calls modulegraph.main()
22
23    - modulegraph = modulegraph.__main__: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
29requirements:
30  build:
31    - python
32    - setuptools
33    - altgraph >=0.12
34
35  run:
36    - python
37    - altgraph >=0.12
38
39test:
40  # Python imports
41  imports:
42    - modulegraph
43
44  commands:
45    # You can put test commands to be run here.  Use this to test that the
46    # entry points work.
47
48  # You can also put a file called run_test.py in the recipe that will be run
49  # at test time.
50
51  # requires:
52    # Put any additional test requirements here.  For example
53    # - nose
54
55about:
56  home: http://bitbucket.org/ronaldoussoren/modulegraph
57  license:  MIT License
58  summary: 'Python module dependency analysis tool'
59
60# See
61# http://docs.continuum.io/conda/build.html for
62# more information about meta.yaml
Note: See TracBrowser for help on using the repository browser.