forked from browserstack/browserstack-local-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 611 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'browserstack-local',
packages = ['browserstack'],
version = '1.2.2',
description = 'Python bindings for Browserstack Local',
author = 'BrowserStack',
url = 'https://github.com/browserstack/browserstack-local-python',
download_url = 'https://github.com/browserstack/browserstack-local-python/archive/master.zip',
keywords = ['BrowserStack', 'Local', 'selenium', 'testing'],
classifiers = [],
install_requires=[
'psutil',
],
)