Skip to content

Commit

Permalink
Adding mitmprom to the requirements of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar Abdelhafith committed Jun 28, 2015
1 parent 2e55e1e commit 8f8c140
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
15 changes: 10 additions & 5 deletions .travis.yml
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
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
requirements = [
"mock",
"cherrypy",
"netlib",
"termcolor",
"watchdog"
"watchdog",
"mitmproxy"
]

test_requirements = [
Expand All @@ -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]',
Expand All @@ -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,
Expand Down

0 comments on commit 8f8c140

Please sign in to comment.