mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
986 B
Python
35 lines
986 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
version = '0.1'
|
|
|
|
# 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 = []
|
|
|
|
setup(name='marionette-transport',
|
|
version=version,
|
|
description="Transport layer for Marionette client",
|
|
long_description=description,
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
keywords='mozilla',
|
|
author='Mozilla Automation and Tools Team',
|
|
author_email='tools@lists.mozilla.org',
|
|
url='https://developer.mozilla.org/en-US/docs/Marionette',
|
|
license='MPL',
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
package_data={},
|
|
include_package_data=False,
|
|
zip_safe=False,
|
|
entry_points="""
|
|
""",
|
|
install_requires=deps,
|
|
)
|
|
|