2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
2012-07-02 13:22:54 -07: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 08:43:16 -08:00
|
|
|
|
2014-02-19 13:42:01 -08:00
|
|
|
from setuptools import setup, find_packages
|
2011-11-29 08:43:16 -08:00
|
|
|
|
2014-02-19 13:42:01 -08:00
|
|
|
PACKAGE_NAME = 'mozlog'
|
2014-03-14 05:36:25 -07:00
|
|
|
PACKAGE_VERSION = '1.6'
|
2011-11-29 08:43:16 -08:00
|
|
|
|
|
|
|
setup(name=PACKAGE_NAME,
|
|
|
|
version=PACKAGE_VERSION,
|
2013-07-25 13:27:53 -07:00
|
|
|
description="Robust log handling specialized for logging in the Mozilla universe",
|
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-09-07 17:58:39 -07:00
|
|
|
author='Mozilla Automation and Testing Team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-07-25 13:27:53 -07:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
|
|
|
license='MPL 1.1/GPL 2.0/LGPL 2.1',
|
2014-02-19 13:42:01 -08:00
|
|
|
packages=find_packages(),
|
2011-11-29 08:43:16 -08:00
|
|
|
zip_safe=False,
|
2013-07-25 13:27:53 -07:00
|
|
|
tests_require=['mozfile'],
|
2011-11-29 08:43:16 -08:00
|
|
|
platforms =['Any'],
|
|
|
|
classifiers=['Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
2013-07-25 13:27:53 -07:00
|
|
|
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
|
|
|
|
'Operating System :: OS Independent',
|
2011-11-29 08:43:16 -08:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
]
|
|
|
|
)
|