From 641c2774de59bcc39353b85caf03b64aa006e01a Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Mon, 7 Nov 2016 10:39:11 -0600 Subject: [PATCH] Cleanup setup.cfg build settings We don't need the m4 files in the python package. Also, this is pure python so should be universal wheels. Also, we don't need to mention the package name since it's the same as the module name. Change-Id: Ic20fe9de35e1b7256e4b4cea394c8de3b7721530 --- MANIFEST.in | 1 + setup.cfg | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9aa8813..03b1069 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ include ChangeLog include oaktreemodel/*pb2.py exclude .gitignore exclude .gitreview +exclude m4/* global-exclude *.pyc global-exclude *.go diff --git a/setup.cfg b/setup.cfg index 7ee1c4a..94ee4d5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,6 +19,5 @@ classifier = Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 -[files] -packages = - oaktree_model +[wheel] +universal = 1