[mozfile] Bump version to 2.0.0, update classifiers and add setup.cfg (Bug 1471622) r=davehunt

[mozfile] Bump version to 2.0.0, update classifiers and add setup.cfg (Bug 1471622)

Differential Revision: https://phabricator.services.mozilla.com/D6905

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Raphael Pierzina 2018-10-11 14:20:10 +00:00
Родитель 707d7f8980
Коммит 97a1f5b5ba
2 изменённых файлов: 27 добавлений и 19 удалений

Просмотреть файл

@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

Просмотреть файл

@ -6,23 +6,29 @@ from __future__ import absolute_import
from setuptools import setup
PACKAGE_NAME = 'mozfile'
PACKAGE_VERSION = '1.2'
PACKAGE_NAME = "mozfile"
PACKAGE_VERSION = "2.0.0"
setup(name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description="Library of file utilities for use in Mozilla testing",
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
classifiers=['Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'],
keywords='mozilla',
author='Mozilla Automation and Tools team',
author_email='tools@lists.mozilla.org',
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
license='MPL',
packages=['mozfile'],
include_package_data=True,
zip_safe=False,
install_requires=['six >= 1.10.0'],
tests_require=['wptserve']
)
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description="Library of file utilities for use in Mozilla testing",
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
keywords="mozilla",
author="Mozilla Automation and Tools team",
author_email="tools@lists.mozilla.org",
url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
license="MPL",
packages=["mozfile"],
include_package_data=True,
zip_safe=False,
install_requires=["six >= 1.10.0"],
tests_require=["wptserve"],
)