2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
2012-07-02 20:22:54 +00:00
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-11-29 16:43:16 +00:00
|
|
|
|
2012-09-08 00:58:39 +00:00
|
|
|
from setuptools import setup
|
2011-11-29 16:43:16 +00:00
|
|
|
|
2015-05-28 07:54:30 +00:00
|
|
|
PACKAGE_VERSION = '0.8'
|
2011-11-29 16:43:16 +00:00
|
|
|
|
|
|
|
# dependencies
|
2013-10-22 22:42:05 +00:00
|
|
|
deps = ['mozfile >= 0.12']
|
2011-11-29 16:43:16 +00:00
|
|
|
|
|
|
|
setup(name='mozinfo',
|
2012-07-21 00:19:38 +00:00
|
|
|
version=PACKAGE_VERSION,
|
2013-06-17 20:23:38 +00:00
|
|
|
description="Library to get system information for use in Mozilla testing",
|
|
|
|
long_description="see http://mozbase.readthedocs.org",
|
2011-11-29 16:43:16 +00:00
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='mozilla',
|
2012-09-08 00:58:39 +00:00
|
|
|
author='Mozilla Automation and Testing Team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-07-25 20:27:53 +00:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2011-11-29 16:43:16 +00:00
|
|
|
license='MPL',
|
2012-09-08 00:58:39 +00:00
|
|
|
packages=['mozinfo'],
|
2011-11-29 16:43:16 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=deps,
|
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
[console_scripts]
|
|
|
|
mozinfo = mozinfo:main
|
|
|
|
""",
|
|
|
|
)
|