summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/webdriver/setup.py
blob: c473961cb64f424e3402b265746a612b09cb7dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup, find_packages

setup(name="webdriver",
      version="1.0",
      description="WebDriver client compatible with "
                  "the W3C browser automation specification.",
      author="Mozilla Engineering Productivity",
      author_email="tools@lists.mozilla.org",
      license="BSD",
      packages=find_packages(),
      classifiers=["Development Status :: 4 - Beta",
                   "Intended Audience :: Developers",
                   "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
                   "Operating System :: OS Independent"])