testing/mozbase/mozprocess/setup.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/mozbase/mozprocess/setup.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,33 @@
     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.19'
    1.11 +
    1.12 +setup(name='mozprocess',
    1.13 +      version=PACKAGE_VERSION,
    1.14 +      description="Mozilla-authored process handling",
    1.15 +      long_description='see http://mozbase.readthedocs.org/',
    1.16 +      classifiers=['Environment :: Console',
    1.17 +                   'Intended Audience :: Developers',
    1.18 +                   'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
    1.19 +                   'Natural Language :: English',
    1.20 +                   'Operating System :: OS Independent',
    1.21 +                   'Programming Language :: Python',
    1.22 +                   'Topic :: Software Development :: Libraries :: Python Modules',
    1.23 +                   ],
    1.24 +      keywords='mozilla',
    1.25 +      author='Mozilla Automation and Tools team',
    1.26 +      author_email='tools@lists.mozilla.org',
    1.27 +      url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
    1.28 +      license='MPL 2.0',
    1.29 +      packages=['mozprocess'],
    1.30 +      include_package_data=True,
    1.31 +      zip_safe=False,
    1.32 +      install_requires=['mozinfo'],
    1.33 +      entry_points="""
    1.34 +      # -*- Entry points: -*-
    1.35 +      """,
    1.36 +      )

mercurial