-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 706 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'browserstack-local',
packages = ['browserstack'],
version = '1.2.14',
description = 'Python bindings for Browserstack Local',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'BrowserStack',
author_email = 'support@browserstack.com',
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',
],
)