Skip to content

Commit 0e369dd

Browse files
committed
added setup.py
1 parent a7b471e commit 0e369dd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'browserstack-local',
4+
packages = ['browserstack-local'], # this must be the same as the name above
5+
version = '0.1.0',
6+
description = 'Python bindings from Browserstack Local',
7+
author = 'BrowserStack',
8+
author_email = '[email protected]',
9+
url = 'https://github.com/browserstack/browserstack-local-python', # use the URL to the github repo
10+
download_url = 'https://github.com/browserstack/browserstack-local-python/tarball/0.1.0', # I'll explain this in a second
11+
keywords = ['BrowserStack', 'Local', 'selenium', 'testing'], # arbitrary keywords
12+
classifiers = [],
13+
)
14+

0 commit comments

Comments
 (0)