Re: [PATCH v2 03/27] libbtrfsutil: add Python bindings

2018-02-21 Thread Misono, Tomohiro
On 2018/02/16 4:04, Omar Sandoval wrote: > From: Omar Sandoval > > The C libbtrfsutil library isn't very useful for scripting, so we also > want bindings for Python. Writing unit tests in Python is also much > easier than doing so in C. Only Python 3 is supported; if someone

Re: [PATCH v2 03/27] libbtrfsutil: add Python bindings

2018-02-21 Thread Omar Sandoval
On Wed, Feb 21, 2018 at 02:47:54PM +0100, David Sterba wrote: > On Thu, Feb 15, 2018 at 11:04:48AM -0800, Omar Sandoval wrote: > > +setup( > > +name='btrfsutil', > > +version=get_version(), > > +description='Library for managing Btrfs filesystems', > > +

Re: [PATCH v2 03/27] libbtrfsutil: add Python bindings

2018-02-21 Thread David Sterba
On Thu, Feb 15, 2018 at 11:04:48AM -0800, Omar Sandoval wrote: > +setup( > +name='btrfsutil', > +version=get_version(), > +description='Library for managing Btrfs filesystems', > +url='https://github.com/kdave/btrfs-progs', > +license='GPLv3', LGPLv3? > +

[PATCH v2 03/27] libbtrfsutil: add Python bindings

2018-02-15 Thread Omar Sandoval
From: Omar Sandoval The C libbtrfsutil library isn't very useful for scripting, so we also want bindings for Python. Writing unit tests in Python is also much easier than doing so in C. Only Python 3 is supported; if someone really wants Python 2 support, they can write their own