forked from mozilla/marketplace-tests-gaia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
from setuptools import setup, find_packages
# get documentation from the README
try:
here = os.path.dirname(os.path.abspath(__file__))
description = file(os.path.join(here, 'README.md')).read()
except (OSError, IOError):
description = ''
# dependencies
deps = ['gaiatest']
setup(name='marketplacetests',
version='1.0',
description="Gaia UI test for Marketplace",
long_description=description,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='mozilla',
author='WebQA Team and contributors',
author_email='[email protected]',
url='https://wiki.mozilla.org/QA/Execution/Web_Testing',
license='MPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
install_requires=deps,
include_package_data=True,
)