1 from setuptools import setup, find_packages
3 setup(name="webdriver",
5 description="WebDriver client compatible with "
6 "the W3C browser automation specification.",
7 author="Mozilla Engineering Productivity",
8 author_email="tools@lists.mozilla.org",
10 packages=find_packages(),
11 classifiers=["Development Status :: 4 - Beta",
12 "Intended Audience :: Developers",
13 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
14 "Operating System :: OS Independent"])