1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/mozbase/manifestdestiny/setup.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.6 +# You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +from setuptools import setup 1.9 + 1.10 +PACKAGE_NAME = "ManifestDestiny" 1.11 +PACKAGE_VERSION = '0.6' 1.12 + 1.13 +setup(name=PACKAGE_NAME, 1.14 + version=PACKAGE_VERSION, 1.15 + description="Library to create and manage test manifests", 1.16 + long_description="see http://mozbase.readthedocs.org/", 1.17 + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 1.18 + keywords='mozilla manifests', 1.19 + author='Mozilla Automation and Testing Team', 1.20 + author_email='tools@lists.mozilla.org', 1.21 + url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', 1.22 + license='MPL', 1.23 + zip_safe=False, 1.24 + packages=['manifestparser'], 1.25 + install_requires=[], 1.26 + entry_points=""" 1.27 + [console_scripts] 1.28 + manifestparser = manifestparser.manifestparser:main 1.29 + """, 1.30 + )