-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
26 lines (23 loc) · 819 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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="1.0.3",
author="Martino Trevisan",
author_email="[email protected]",
maintainer="Martino Trevisan",
maintainer_email="[email protected]",
url="https://github.com/marty90/PyChromeDevTools",
download_url = 'https://github.com/marty90/PyChromeDevTools/tarball/1.0.3',
packages=['PyChromeDevTools'],
install_requires=['requests', 'websocket-client']
)
# Upload on pip with:
# Create new version
# python setup.py sdist
# twine upload dist/*
# Test it locally removing the pip installed one