Bug 1735098 - Implement EpochTimeStamp from HR-Time r=edgar
[gecko.git] / testing / mozbase / mozinfo / setup.py
blob4e90ba5d6018a0cd21a131b866352ca06b586584
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 __future__ import absolute_import
7 from setuptools import setup
9 PACKAGE_VERSION = "1.2.2"
11 # dependencies
12 deps = [
13 "distro >= 1.4.0",
14 "mozfile >= 0.12",
17 setup(
18 name="mozinfo",
19 version=PACKAGE_VERSION,
20 description="Library to get system information for use in Mozilla testing",
21 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
22 classifiers=[
23 "Programming Language :: Python :: 2.7",
24 "Programming Language :: Python :: 3",
25 "Programming Language :: Python :: 3.5",
26 "Development Status :: 5 - Production/Stable",
28 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
29 keywords="mozilla",
30 author="Mozilla Automation and Testing Team",
31 author_email="tools@lists.mozilla.org",
32 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
33 license="MPL",
34 packages=["mozinfo"],
35 include_package_data=True,
36 zip_safe=False,
37 install_requires=deps,
38 entry_points="""
39 # -*- Entry points: -*-
40 [console_scripts]
41 mozinfo = mozinfo:main
42 """,