setup.py (606B)
1 from setuptools import setup, find_packages 2 3 setup(name="webdriver", 4 version="1.0", 5 description="WebDriver client compatible with " 6 "the W3C browser automation specification.", 7 author="Mozilla Engineering Productivity", 8 author_email="tools@lists.mozilla.org", 9 license="BSD", 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"])