forked from marty90/PyChromeDevTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 678 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="PyChromeDevTools",
description="PyChromeDevTools : Interact with Google Chrome using the Chrome DevTools Protocol.",
license="Apache License 2.0",
version="0.1",
author="Martino Trevisan",
author_email="martino.trevisan@polito.it",
maintainer="Martino Trevisan",
maintainer_email="martino.trevisan@polito.it",
url="https://github.com/marty90/PyChromeDevTools",
download_url = 'https://github.com/marty90/PyChromeDevTools/tarball/1.0.1',
packages=['PyChromeDevTools'],
install_requires=['requests', 'websocket-client']
)