forked from larsyencken/marelle-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython.pl
75 lines (63 loc) · 1.05 KB
/
python.pl
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
%
% python.pl
% computer-deps
%
%
% a workbench of common tools in python
%
meta_pkg('python-recommended', [
csvkit,
h5py,
ipython,
jupyter,
matplotlib,
networkx,
numpy,
pandas,
pip,
scipy,
'scikit-learn',
sh,
statsmodels,
tables,
virtualenv
]).
%
% meta pacakges for working with python
%
managed_pkg(pyenv).
command_pkg(virtualenv).
installs_with_pip(virtualenv).
%
% common python packages
%
pip_pkg(csvkit).
pip_pkg(h5py).
pip_pkg(jupyter).
pip_pkg(ipython).
pip_pkg(matplotlib).
pip_pkg(networkx).
pip_pkg(numexpr).
pip_pkg(numpy).
pip_pkg(pandas).
pip_pkg(pyaudio).
pip_pkg(scipy).
pip_pkg('scikit-learn').
pip_pkg(sh).
pip_pkg(statsmodels).
pip_pkg(tables).
%
% extra deps for h5py
%
depends(h5py, _, [hdf5]).
pkg(hdf5).
installs_with_apt(hdf5, 'hdf5-tools').
installs_with_brew(hdf5).
depends(hdf5, linux(_), ['libhdf5-dev']).
depends(hdf5, osx, 'homebrew-science-tap').
managed_pkg('libhdf5-dev').
%
% extra deps for pyaudio
%
depends(pyaudio, _, [portaudio]).
managed_pkg(portaudio).