Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mozbase / mozprocess / setup.py
blob917e2aa9f7da16a553f8c66948ec8fda1d0ffc09
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 = "1.3.1"
9 setup(
10 name="mozprocess",
11 version=PACKAGE_VERSION,
12 description="Mozilla-authored process handling",
13 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
14 classifiers=[
15 "Environment :: Console",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
18 "Natural Language :: English",
19 "Operating System :: OS Independent",
20 "Programming Language :: Python :: 2.7",
21 "Programming Language :: Python :: 3.5",
22 "Topic :: Software Development :: Libraries :: Python Modules",
24 keywords="mozilla",
25 author="Mozilla Automation and Tools team",
26 author_email="tools@lists.mozilla.org",
27 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
28 license="MPL 2.0",
29 packages=["mozprocess"],
30 include_package_data=True,
31 zip_safe=False,
32 install_requires=["mozinfo"],
33 entry_points="""
34 # -*- Entry points: -*-
35 """,