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
|
|
|
|
|
|
|
import sys
|
2012-09-08 00:58:39 +00:00
|
|
|
from setuptools import setup
|
2011-11-29 16:43:16 +00:00
|
|
|
|
2013-10-22 22:42:05 +00:00
|
|
|
PACKAGE_VERSION = '0.16'
|
2011-11-29 16:43:16 +00:00
|
|
|
|
|
|
|
# we only support python 2 right now
|
|
|
|
assert sys.version_info[0] == 2
|
|
|
|
|
2013-05-28 16:51:35 +00:00
|
|
|
deps = ["ManifestDestiny >= 0.5.4",
|
2013-10-22 22:42:05 +00:00
|
|
|
"mozfile >= 0.12"]
|
2011-11-29 16:43:16 +00:00
|
|
|
|
|
|
|
setup(name='mozprofile',
|
2012-07-21 00:19:38 +00:00
|
|
|
version=PACKAGE_VERSION,
|
2013-03-22 04:06:28 +00:00
|
|
|
description="Library to create and modify Mozilla application profiles",
|
|
|
|
long_description="see http://mozbase.readthedocs.org/",
|
2012-07-02 20:22:54 +00: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-08 00:58:39 +00:00
|
|
|
author_email='tools@lists.mozilla.org',
|
2013-05-28 16:51:35 +00:00
|
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
2012-07-02 20:22:54 +00:00
|
|
|
license='MPL 2.0',
|
2012-09-08 00:58:39 +00:00
|
|
|
packages=['mozprofile'],
|
2011-11-29 16:43:16 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=deps,
|
2013-05-28 16:51:35 +00:00
|
|
|
tests_require=['mozhttpd', 'mozfile'],
|
2011-11-29 16:43:16 +00:00
|
|
|
entry_points="""
|
|
|
|
# -*- Entry points: -*-
|
|
|
|
[console_scripts]
|
|
|
|
mozprofile = mozprofile:cli
|
2013-10-22 22:42:05 +00:00
|
|
|
view-profile = mozprofile:view_profile
|
|
|
|
diff-profiles = mozprofile:diff_profiles
|
2011-11-29 16:43:16 +00:00
|
|
|
""",
|
2012-07-02 20:22:54 +00:00
|
|
|
)
|