~ubuntu-branches/ubuntu/trusty/mozjs24/trusty-proposed

« back to all changes in this revision

Viewing changes to js/src/testing/mozbase/mozb2g/setup.py

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-02-11 21:55:34 UTC
  • Revision ID: package-import@ubuntu.com-20140211215534-m1zyq5aj59md3y07
Tags: upstream-24.2.0
ImportĀ upstreamĀ versionĀ 24.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This Source Code Form is subject to the terms of the Mozilla Public
 
2
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
 
3
# You can obtain one at http://mozilla.org/MPL/2.0/.
 
4
 
 
5
import os
 
6
from setuptools import setup
 
7
 
 
8
PACKAGE_VERSION = '0.1'
 
9
 
 
10
# take description from README
 
11
here = os.path.dirname(os.path.abspath(__file__))
 
12
try:
 
13
    description = file(os.path.join(here, 'README.md')).read()
 
14
except (OSError, IOError):
 
15
    description = ''
 
16
 
 
17
deps = ['mozdevice', 'marionette_client']
 
18
 
 
19
setup(name='mozb2g',
 
20
      version=PACKAGE_VERSION,
 
21
      description="B2G specific code for device automation",
 
22
      long_description=description,
 
23
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
 
24
      keywords='',
 
25
      author='Mozilla Automation and Testing Team',
 
26
      author_email='tools@lists.mozilla.org',
 
27
      url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase',
 
28
      license='MPL',
 
29
      packages=['mozb2g'],
 
30
      include_package_data=True,
 
31
      zip_safe=False,
 
32
      install_requires=deps
 
33
      )