unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 036496498c571b066492246b82c2e6a805ee0e6e 1087 bytes (raw)
name: bindings/python-cffi/setup.py 	 # note: path name is non-authoritative(*)

 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
 
import setuptools
import os

# get the notmuch version number without importing the notmuch module
version_file = os.path.join(os.path.dirname(__file__),
                            'notmuch2', 'version.py')
exec(compile(open(version_file).read(), version_file, 'exec'))
assert '__VERSION__' in globals(), \
    'Failed to read the notmuch binding version number'

setuptools.setup(
    name='notmuch2',
    version=__VERSION__,
    description='Pythonic bindings for the notmuch mail database using CFFI',
    author='Floris Bruynooghe',
    author_email='flub@devork.be',
    setup_requires=['cffi>=1.0.0'],
    install_requires=['cffi>=1.0.0'],
    packages=setuptools.find_packages(exclude=['tests']),
    cffi_modules=['notmuch2/_build.py:ffibuilder'],
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Programming Language :: Python :: 3',
        'Topic :: Communications :: Email',
        'Topic :: Software Development :: Libraries',
    ],
)

debug log:

solving 03649649 ...
found 03649649 in https://yhetil.org/notmuch/20200625110045.208558-3-david@tethera.net/
found 37918e3d in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 37918e3d2cdb3b7bcf0a3e3db860bfab5bd1b0db	bindings/python-cffi/setup.py

applying [1/1] https://yhetil.org/notmuch/20200625110045.208558-3-david@tethera.net/
diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py
index 37918e3d..03649649 100644

Checking patch bindings/python-cffi/setup.py...
Applied patch bindings/python-cffi/setup.py cleanly.

index at:
100644 036496498c571b066492246b82c2e6a805ee0e6e	bindings/python-cffi/setup.py

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).