Skip to content

Commit

Permalink
Minify dependencies #67 (#94)
Browse files Browse the repository at this point in the history
* Minify dependencies #67

* Updated docs

* Updated dependencies
  • Loading branch information
avara1986 committed Mar 7, 2020
1 parent e84ca01 commit b7096f8
Show file tree
Hide file tree
Showing 16 changed files with 261 additions and 114 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ nosetests.xml
.coverage
.tox
py_ms.egg-info/*
.eggs/*
pylintReport.txt
.scannerwork/

Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python
python:
- '3.6'
- "3.6"
- "3.7"
- "3.8"
install:
- pip install pipenv
- pip install -U tox coverage==4.0.3 coveralls==1.8.2

- pip install --upgrade setuptools tox tox-travis coveralls
script:
- coverage erase
- tox
Expand Down
33 changes: 6 additions & 27 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,13 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
flask = ">=1.1.1"
python-json-logger = ">=0.1.10"
pyyaml = ">=5.1.2"
anyconfig = ">=0.9.8"
swagger-ui-bundle = ">=0.0.2"
connexion = {extras = ["swagger-ui"],version = "==2.6.0"}
jaeger-client = "==4.3.0"
flask-opentracing = "*"
opentracing = ">=2.1"
opentracing-instrumentation = "==3.2.1"
prometheus_client = ">=0.7.1"
cryptography = "*"

[dev-packages]
requests-mock = "*"
coverage = "==5.0.3"
pytest = "*"
pytest-cov = "*"
pylint = "*"
flake8 = "*"
tox = "*"
bandit = "*"
mkdocs = "*"
mkdocs-material = "*"
lightstep = "==4.4.3"
py-ms = {editable = true,extras = ["tests"],path = "."}

[packages]
py-ms = {editable = true,extras = ["all"],path = "."}

[requires]
python_version = "3.6"
python_version = "3.7"

0 comments on commit b7096f8

Please sign in to comment.