mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
14 lines
606 B
Python
14 lines
606 B
Python
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"])
|