Bug 1807268 - Fix verifyOpenAllInNewTabsOptionTest UI test r=ohorvath
[gecko.git] / python / mozversioncontrol / setup.py
blobc0e1aa643f8979476220c5ae6c8bbc47937f658c
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
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import find_packages, setup
7 VERSION = "0.1"
9 setup(
10 author="Mozilla Foundation",
11 author_email="Mozilla Release Engineering",
12 name="mozversioncontrol",
13 description="Mozilla version control functionality",
14 license="MPL 2.0",
15 packages=find_packages(),
16 version=VERSION,
17 classifiers=[
18 "Development Status :: 3 - Alpha",
19 "Topic :: Software Development :: Build Tools",
20 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
21 "Programming Language :: Python :: 2",
22 "Programming Language :: Python :: 2.7",
23 "Programming Language :: Python :: 3",
24 "Programming Language :: Python :: 3.5",
25 "Programming Language :: Python :: Implementation :: CPython",
27 keywords="mozilla",