Re: [Distutils] Data on requirement files on GitHub

2017-03-08 Thread Nick Timkovich
Looks like a fun chunk of data, what's the query you used? Can you add a README to the repo with some description if others want to iterate on it (maybe look into setup.py's?) Nick On Tue, Mar 7, 2017 at 5:06 AM, Jannis Gebauer wrote: > Hi, > > I ran a couple of queries against

[Distutils] Data on requirement files on GitHub

2017-03-08 Thread Jannis Gebauer
Hi, I ran a couple of queries against GitHubs public big query dataset [0] last week. I’m interested in requirement files in particular, so I ran a query extracting all available requirement files. Since queries against this dataset are rather expensive ($7 on all repos), I thought I’d share

[Distutils] custom setup.py link arguments order

2017-03-08 Thread Gabriel Ganne
Hi, I'm currently writing a python C module which has a chained dependency: - mymodule requires libb - libb requires liba To that effect, within setup.py, I link against both liba and libb libraries=['a', 'b'], Also, as I'm working on Ubuntu, I want to add -Wl,--no-as-needed to make sure