|
1 import os |
|
2 from setuptools import setup, find_packages |
|
3 |
|
4 version = '0.1' |
|
5 |
|
6 # get documentation from the README |
|
7 try: |
|
8 here = os.path.dirname(os.path.abspath(__file__)) |
|
9 description = file(os.path.join(here, 'README.md')).read() |
|
10 except (OSError, IOError): |
|
11 description = '' |
|
12 |
|
13 # dependencies |
|
14 deps = [] |
|
15 |
|
16 setup(name='marionette-transport', |
|
17 version=version, |
|
18 description="Transport layer for Marionette client", |
|
19 long_description=description, |
|
20 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
|
21 keywords='mozilla', |
|
22 author='Mozilla Automation and Tools Team', |
|
23 author_email='tools@lists.mozilla.org', |
|
24 url='https://developer.mozilla.org/en-US/docs/Marionette', |
|
25 license='MPL', |
|
26 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
|
27 package_data={}, |
|
28 include_package_data=False, |
|
29 zip_safe=False, |
|
30 entry_points=""" |
|
31 """, |
|
32 install_requires=deps, |
|
33 ) |
|
34 |