2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
2012-07-03 00:22:54 +04: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 20:43:16 +04:00
|
|
|
|
2017-08-19 01:49:06 +03:00
|
|
|
|
2012-09-08 04:58:39 +04:00
|
|
|
from setuptools import setup
|
2011-11-29 20:43:16 +04:00
|
|
|
|
2017-05-23 20:04:29 +03:00
|
|
|
PACKAGE_VERSION = '0.10'
|
2011-11-29 20:43:16 +04:00
|
|
|
|
|
|
|
# dependencies
|
2013-10-23 02:42:05 +04:00
|
|
|
deps = ['mozfile >= 0.12']
|
2011-11-29 20:43:16 +04:00
|
|
|
|
|
|
|
setup(name='mozinfo',
|
2012-07-21 04:19:38 +04:00
|
|
|
version=PACKAGE_VERSION,
|
2013-06-18 00:23:38 +04:00
|
|
|
description="Library to get system information for use in Mozilla testing",
|
|
|
|
long_description="see http://mozbase.readthedocs.org",
|
2017-08-19 01:49:06 +03:00
|
|
|
classifiers=['Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 2 :: Only'],
|
|
|
|
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
2011-11-29 20:43:16 +04:00
|
|
|
keywords='mozilla',
|
2012-09-08 04:58:39 +04:00
|
|
|
author='Mozilla Automation and Testing Team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-07-26 00:27:53 +04:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2011-11-29 20:43:16 +04:00
|
|
|
license='MPL',
|
2012-09-08 04:58:39 +04:00
|
|
|
packages=['mozinfo'],
|
2011-11-29 20:43:16 +04:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=deps,
|
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
[console_scripts]
|
|
|
|
mozinfo = mozinfo:main
|
|
|
|
""",
|
|
|
|
)
|