-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding mitmprom to the requirements of setup.py
- Loading branch information
Omar Abdelhafith
committed
Jun 28, 2015
1 parent
2e55e1e
commit 8f8c140
Showing
2 changed files
with
15 additions
and
9 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 |
---|---|---|
@@ -1,11 +1,16 @@ | ||
# Config file for automatic testing at travis-ci.org | ||
|
||
language: python | ||
|
||
python: | ||
- "2.7.9" | ||
- "2.6" | ||
- "2.7" | ||
- "2.7.9" | ||
|
||
env: | ||
- PIP_USE_MIRRORS=true | ||
|
||
install: pip install -r requirements.txt | ||
install: | ||
- python setup.py -q build | ||
- python setup.py -q install | ||
|
||
script: py.test | ||
script: | ||
- py.test |
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 |
---|---|---|
|
@@ -17,9 +17,9 @@ | |
requirements = [ | ||
"mock", | ||
"cherrypy", | ||
"netlib", | ||
"termcolor", | ||
"watchdog" | ||
"watchdog", | ||
"mitmproxy" | ||
] | ||
|
||
test_requirements = [ | ||
|
@@ -29,8 +29,8 @@ | |
|
||
setup( | ||
name='mockpy', | ||
version='0.1.1', | ||
description="Mockpy is an work in progress (Wip) open source tool to quickly create mock servers. Mockpy is inspired from wiremock and uses libmproxy for the proxy functionality", | ||
version='0.1.4', | ||
description="Mockpy is an work in progress open source tool to quickly create mock servers. Mockpy is inspired from wiremock and uses libmproxy for the proxy functionality", | ||
long_description=readme + '\n\n' + history, | ||
author="Omar Abdelhafith", | ||
author_email='[email protected]', | ||
|
@@ -55,6 +55,7 @@ | |
"Programming Language :: Python :: 2", | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 2.7.9', | ||
], | ||
test_suite='tests', | ||
tests_require=test_requirements, | ||
|