Skip to content

Commit ccfeb4d

Browse files
authored
Fix dependencies errors (#95)
1 parent 2778bb6 commit ccfeb4d

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

docs/encrypt_decryt_configuration.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Encrypt Configuration
22

3-
## Installation
4-
5-
You must install `pyms` with `pip install pyms[all]` or `pip install pyms[cryptography]`
6-
73
## Configuration
84

95
When you work in multiple environments: local, dev, testing, production... you must set critical configuration in your

docs/installation.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,5 @@ pip install pyms[metrics]
3434
```
3535
pip install pyms[trace]
3636
```
37-
* Installing cryptography dependencies
38-
```
39-
pip install pyms[cryptography]
40-
```
4137

4238
See [Quickstart](quickstart.md) to continue with this tutorial

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'python-json-logger>=0.1.10',
2020
'pyyaml>=5.1.2',
2121
'anyconfig>=0.9.8',
22+
'cryptography>=2.8',
2223
]
2324

2425
install_request_requires = [
@@ -38,10 +39,6 @@
3839
'opentracing-instrumentation>=3.2.1',
3940
]
4041

41-
install_cryptography_requires = [
42-
'cryptography>=2.8',
43-
]
44-
4542
install_metrics_requires = [
4643
'prometheus_client>=0.7.1',
4744
]
@@ -61,8 +58,7 @@
6158
]
6259

6360
install_all_requires = (install_request_requires + install_swagger_requires +
64-
install_traces_requires + install_cryptography_requires +
65-
install_metrics_requires)
61+
install_traces_requires + install_metrics_requires)
6662

6763
setup(
6864
name="py-ms",
@@ -95,7 +91,6 @@
9591
'all': install_all_requires,
9692
'request': install_request_requires,
9793
'swagger': install_swagger_requires,
98-
'cryptography': install_cryptography_requires,
9994
'traces': install_traces_requires,
10095
'metrics': install_metrics_requires,
10196
'tests': install_tests_requires,

0 commit comments

Comments
 (0)