From cc374fc5fec4981fbee00ccf7a80ff62f949c2c6 Mon Sep 17 00:00:00 2001 From: Guillaume Papin Date: Fri, 18 Nov 2016 03:42:45 +0100 Subject: [PATCH] setup.cfg: specify universal bdist --- compdb/__init__.py | 1 + setup.cfg | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 setup.cfg diff --git a/compdb/__init__.py b/compdb/__init__.py index d9e0fe2..78fe332 100644 --- a/compdb/__init__.py +++ b/compdb/__init__.py @@ -1,5 +1,6 @@ from __future__ import print_function, unicode_literals, absolute_import +# The version as used in the setup.py __version__ = '0.0.1' from compdb.compdb import App diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1