2012-10-01 14:00:55 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# 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/.
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2013-10-22 15:42:05 -07:00
|
|
|
PACKAGE_VERSION = '0.12'
|
2012-10-01 14:00:55 -07:00
|
|
|
|
|
|
|
setup(name='mozfile',
|
|
|
|
version=PACKAGE_VERSION,
|
2012-12-12 10:01:27 -08:00
|
|
|
description="Library of file utilities for use in Mozilla testing",
|
2012-12-16 18:17:27 -08:00
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-10-01 14:00:55 -07:00
|
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
keywords='mozilla',
|
|
|
|
author='Mozilla Automation and Tools team',
|
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-07-25 13:27:53 -07:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2012-10-01 14:00:55 -07:00
|
|
|
license='MPL',
|
|
|
|
packages=['mozfile'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2013-05-28 09:51:35 -07:00
|
|
|
install_requires=[],
|
|
|
|
tests_require=['mozhttpd']
|
2012-10-01 14:00:55 -07:00
|
|
|
)
|