-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
118 lines (108 loc) · 2.37 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{% set name = "lcopt-cv" %}
{% set dl_name = "lcopt_cv" %}
{% set version = "0.1.3" %}
{% set hash_type = "sha256" %}
{% set hash_value = "4a3f31c823baee7c0239b5c88e3b151bcff02d96d205056dda9d58dee6b4d210" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.tar.gz'
url: https://pypi.io/packages/source/{{ name[0] }}/{{ dl_name }}/{{ dl_name }}-{{ version }}.tar.gz
'{{ hash_type }}': '{{ hash_value }}'
build:
noarch: python
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
entry_points:
- lcopt-cv = lcopt_cv.bin.lcopt_cv_gui:main
- lcopt-cv-q = lcopt_cv.bin.lcopt_cv_gui_q:main
requirements:
build:
- appdirs
- asteval
- brightway2
- bw2analyzer >=0.9.4
- bw2calc
- bw2data
- bw2io >=0.5.10
- bw2parameters
- docopt
- eight
- flask
- future
- imutils
- jupyter
- lxml
- lcopt
- numpy
- pandas
- peewee >=2.8
- pillow
- psutil
- pypardiso
- pyprind
- python
- pywin32 # [win]
- requests
- scipy
- setuptools
- stats_arrays
- unicodecsv
- voluptuous
- werkzeug
- whoosh
- xlrd
- xlsxwriter
run:
- appdirs
- asteval
- brightway2
- bw2analyzer >=0.9.4
- bw2calc
- bw2data
- bw2io >=0.5.10
- bw2parameters
- docopt
- eight
- flask
- future
- imutils
- jupyter
- lxml
- lcopt
- numpy
- pandas
- peewee >=2.8
- pillow
- psutil
- pypardiso
- pyprind
- python
- pywin32 # [win]
- requests
- scipy
- setuptools
- stats_arrays
- unicodecsv
- voluptuous
- werkzeug
- whoosh
- xlrd
- xlsxwriter
#test:
# imports:
# - {{ name }}
about:
home: https://github.com/pjamesjoyce/lcopt_cv/
license: BSD 3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: 'Computer vision module that links to lcopt'
description: '# lcopt-cv
Computer vision module that links to lcopt
# Installation
`lcopt-cv` requires the `brightway2` and `lcopt` packages to be installed
Online documentation, including full installation instructions, is available [here](http://lcopt-cv.readthedocs.io)'
doc_url: 'http://lcopt-cv.readthedocs.io/en/latest/index.html'
dev_url: 'https://github.com/pjamesjoyce/lcopt_cv'