Skip to content

Commit b7096f8

Browse files
authored
Minify dependencies #67 (#94)
* Minify dependencies #67 * Updated docs * Updated dependencies
1 parent e84ca01 commit b7096f8

16 files changed

+261
-114
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ nosetests.xml
1414
.coverage
1515
.tox
1616
py_ms.egg-info/*
17+
.eggs/*
1718
pylintReport.txt
1819
.scannerwork/
1920

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: python
22
python:
3-
- '3.6'
3+
- "3.6"
4+
- "3.7"
5+
- "3.8"
46
install:
5-
- pip install pipenv
6-
- pip install -U tox coverage==4.0.3 coveralls==1.8.2
7-
7+
- pip install --upgrade setuptools tox tox-travis coveralls
88
script:
99
- coverage erase
1010
- tox

Pipfile

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,13 @@
11
[[source]]
2+
name = "pypi"
23
url = "https://pypi.org/simple"
34
verify_ssl = true
4-
name = "pypi"
5-
6-
[packages]
7-
flask = ">=1.1.1"
8-
python-json-logger = ">=0.1.10"
9-
pyyaml = ">=5.1.2"
10-
anyconfig = ">=0.9.8"
11-
swagger-ui-bundle = ">=0.0.2"
12-
connexion = {extras = ["swagger-ui"],version = "==2.6.0"}
13-
jaeger-client = "==4.3.0"
14-
flask-opentracing = "*"
15-
opentracing = ">=2.1"
16-
opentracing-instrumentation = "==3.2.1"
17-
prometheus_client = ">=0.7.1"
18-
cryptography = "*"
195

206
[dev-packages]
21-
requests-mock = "*"
22-
coverage = "==5.0.3"
23-
pytest = "*"
24-
pytest-cov = "*"
25-
pylint = "*"
26-
flake8 = "*"
27-
tox = "*"
28-
bandit = "*"
29-
mkdocs = "*"
30-
mkdocs-material = "*"
31-
lightstep = "==4.4.3"
7+
py-ms = {editable = true,extras = ["tests"],path = "."}
8+
9+
[packages]
10+
py-ms = {editable = true,extras = ["all"],path = "."}
3211

3312
[requires]
34-
python_version = "3.6"
13+
python_version = "3.7"

0 commit comments

Comments
 (0)