From a7b471eb19371bff28e759b3a3bcbe508bc18d22 Mon Sep 17 00:00:00 2001 From: Vibhaj Rajan Date: Sun, 1 May 2016 15:53:53 +0530 Subject: [PATCH 1/5] added license --- MIT-LICENSE.txt | 22 ++++++++++++++++++++++ README.md | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 MIT-LICENSE.txt diff --git a/MIT-LICENSE.txt b/MIT-LICENSE.txt new file mode 100644 index 0000000..e070d10 --- /dev/null +++ b/MIT-LICENSE.txt @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2016 BrowserStack + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/README.md b/README.md index 6bac08f..35767b3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/browserstack/browserstack-local-python.svg?branch=master)](https://travis-ci.org/browserstack/browserstack-local-python) -A simple Python wrapper for BrowserStack Local Binary. +Python bindings for BrowserStack Local. ## Installation From 0e369dd6bd1fd15c2be4063128d85ab0a0796d7b Mon Sep 17 00:00:00 2001 From: Vibhaj Rajan Date: Sun, 1 May 2016 15:57:30 +0530 Subject: [PATCH 2/5] added setup.py --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..081d5ac --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from distutils.core import setup +setup( + name = 'browserstack-local', + packages = ['browserstack-local'], # this must be the same as the name above + version = '0.1.0', + description = 'Python bindings from Browserstack Local', + author = 'BrowserStack', + author_email = 'support@browserstack.com', + url = 'https://github.com/browserstack/browserstack-local-python', # use the URL to the github repo + download_url = 'https://github.com/browserstack/browserstack-local-python/tarball/0.1.0', # I'll explain this in a second + keywords = ['BrowserStack', 'Local', 'selenium', 'testing'], # arbitrary keywords + classifiers = [], +) + From 45f6d7a027630161e9f0c8f34df1735d522a2c68 Mon Sep 17 00:00:00 2001 From: Vibhaj Rajan Date: Sun, 1 May 2016 15:58:29 +0530 Subject: [PATCH 3/5] added setup.cfg --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..8c28267 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file = README.md + From 21d3d3dc47e871461f3b82d643e1c4a05d9f0b38 Mon Sep 17 00:00:00 2001 From: Vibhaj Rajan Date: Sun, 1 May 2016 15:59:11 +0530 Subject: [PATCH 4/5] rename requirements --- MIT-LICENSE.txt => LICENSE.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename MIT-LICENSE.txt => LICENSE.txt (100%) diff --git a/MIT-LICENSE.txt b/LICENSE.txt similarity index 100% rename from MIT-LICENSE.txt rename to LICENSE.txt From 423d6a09f43e82be59f88267d952112f3931f4d8 Mon Sep 17 00:00:00 2001 From: Vibhaj Rajan Date: Sun, 1 May 2016 16:08:32 +0530 Subject: [PATCH 5/5] removed comments --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 081d5ac..b3a31aa 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ from distutils.core import setup setup( name = 'browserstack-local', - packages = ['browserstack-local'], # this must be the same as the name above + packages = ['browserstack-local'], version = '0.1.0', description = 'Python bindings from Browserstack Local', author = 'BrowserStack', author_email = 'support@browserstack.com', - url = 'https://github.com/browserstack/browserstack-local-python', # use the URL to the github repo - download_url = 'https://github.com/browserstack/browserstack-local-python/tarball/0.1.0', # I'll explain this in a second - keywords = ['BrowserStack', 'Local', 'selenium', 'testing'], # arbitrary keywords + url = 'https://github.com/browserstack/browserstack-local-python', + download_url = 'https://github.com/browserstack/browserstack-local-python/tarball/0.1.0', + keywords = ['BrowserStack', 'Local', 'selenium', 'testing'], classifiers = [], )