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
|
|
|
|
2012-09-07 17:58:39 -07:00
|
|
|
from setuptools import setup
|
2011-11-29 08:43:16 -08:00
|
|
|
|
2013-03-21 21:06:28 -07:00
|
|
|
PACKAGE_VERSION = '0.9'
|
2011-11-29 08:43:16 -08:00
|
|
|
|
|
|
|
setup(name='mozprocess',
|
2012-07-02 13:22:54 -07:00
|
|
|
version=PACKAGE_VERSION,
|
2011-11-29 08:43:16 -08:00
|
|
|
description="Mozilla-authored process handling",
|
2013-03-21 21:06:28 -07:00
|
|
|
long_description='see http://mozbase.readthedocs.org/',
|
2012-07-02 13:22:54 -07:00
|
|
|
classifiers=['Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
],
|
|
|
|
keywords='mozilla',
|
|
|
|
author='Mozilla Automation and Tools team',
|
2012-09-07 17:58:39 -07:00
|
|
|
author_email='tools@lists.mozilla.org',
|
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase',
|
2012-07-02 13:22:54 -07:00
|
|
|
license='MPL 2.0',
|
2012-09-07 17:58:39 -07:00
|
|
|
packages=['mozprocess'],
|
2011-11-29 08:43:16 -08:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=['mozinfo'],
|
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
""",
|
|
|
|
)
|