-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install -r requirements_dev.txt | ||
script: | ||
- python setup.py nosetests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ include CHANGELOG.md | |
include requirements.txt | ||
include VERSION | ||
include LICENSE | ||
include setup.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,6 @@ | |
with open('requirements.txt') as f: | ||
required = f.read().splitlines() | ||
|
||
readme = [] | ||
with open('README.md', 'r') as fh: | ||
readme = fh.readlines() | ||
|
||
setup( | ||
name='toolium', | ||
version=__VERSION__, | ||
|
@@ -35,8 +31,8 @@ | |
author='Rubén González Alonso, Telefónica I+D', | ||
author_email='[email protected]', | ||
url='https://github.com/telefonica/toolium', | ||
description='Wrapper tool for Selenium and Appium libraries', | ||
long_description='\n'.join(readme), | ||
description='Wrapper tool for testing APIs, web and mobile applications using requests, selenium and appium libraries', | ||
long_description='', | ||
keywords=['selenium', 'appium', 'webdriver', 'web automation', 'mobile automation'], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters