Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mozbase / mozversion / setup.py
blob9e286872ecce02ffaccef440d164c0e89ff64067
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 # You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import setup
7 PACKAGE_VERSION = "2.4.0"
10 setup(
11 name="mozversion",
12 version=PACKAGE_VERSION,
13 description="Library to get version information for applications",
14 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
15 classifiers=[
16 "Programming Language :: Python :: 2.7",
17 "Programming Language :: Python :: 3.5",
19 keywords="mozilla",
20 author="Mozilla Automation and Testing Team",
21 author_email="tools@lists.mozilla.org",
22 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
23 license="MPL",
24 packages=["mozversion"],
25 include_package_data=True,
26 zip_safe=False,
27 install_requires=["mozlog >= 6.0", "six >= 1.13.0"],
28 entry_points="""
29 # -*- Entry points: -*-
30 [console_scripts]
31 mozversion = mozversion:cli
32 """,