From f0eae5cd916a27363e419f07ff3d31c6d4213ec5 Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Tue, 1 Oct 2019 18:32:07 +0000 Subject: [PATCH] Bug 1585146 - [mach] Bump to 1.0.0 and add Python classifiers, r=firefox-build-system-reviewers,mshal Depends on D47668 Differential Revision: https://phabricator.services.mozilla.com/D47669 --- python/mach/setup.cfg | 2 ++ python/mach/setup.py | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 python/mach/setup.cfg diff --git a/python/mach/setup.cfg b/python/mach/setup.cfg new file mode 100644 index 000000000000..3c6e79cf31da --- /dev/null +++ b/python/mach/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/python/mach/setup.py b/python/mach/setup.py index 962eb3e42d73..12fd396f3f0a 100644 --- a/python/mach/setup.py +++ b/python/mach/setup.py @@ -9,7 +9,7 @@ except ImportError: from distutils.core import setup -VERSION = '0.6' +VERSION = '1.0.0' README = open('README.rst').read() @@ -25,9 +25,11 @@ setup( version=VERSION, classifiers=[ 'Environment :: Console', - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Natural Language :: English', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.5', ], install_requires=[ 'blessings',