testing/mozbase/mozversion/setup.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/mozbase/mozversion/setup.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     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_VERSION = '0.4'
    1.11 +
    1.12 +dependencies = ['mozdevice >= 0.29',
    1.13 +                'mozfile >= 1.0',
    1.14 +                'mozlog >= 1.5']
    1.15 +
    1.16 +setup(name='mozversion',
    1.17 +      version=PACKAGE_VERSION,
    1.18 +      description='Library to get version information for applications',
    1.19 +      long_description='See http://mozbase.readthedocs.org',
    1.20 +      classifiers=[],
    1.21 +      keywords='mozilla',
    1.22 +      author='Mozilla Automation and Testing Team',
    1.23 +      author_email='tools@lists.mozilla.org',
    1.24 +      url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
    1.25 +      license='MPL',
    1.26 +      packages=['mozversion'],
    1.27 +      include_package_data=True,
    1.28 +      zip_safe=False,
    1.29 +      install_requires=dependencies,
    1.30 +      entry_points="""
    1.31 +      # -*- Entry points: -*-
    1.32 +      [console_scripts]
    1.33 +      mozversion = mozversion:cli
    1.34 +      """)

mercurial