File tree Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,6 @@ Install using pip::
26
26
27
27
pip install CMRESHandler
28
28
29
- Requirements Python 2
30
- =====================
31
- This library requires the following dependencies
32
- - elasticsearch
33
- - requests
34
- - enum
35
-
36
-
37
29
Requirements Python 3
38
30
=====================
39
31
This library requires the following dependencies
Original file line number Diff line number Diff line change 9
9
# To use a consistent encoding
10
10
from codecs import open
11
11
from os import path
12
- import sys
13
12
14
13
here = path .abspath (path .dirname (__file__ ))
15
14
22
21
'requests'
23
22
]
24
23
25
- # If python version is above 3.4 (built in enums supported enums)
26
- if sys .version_info <= (3 ,4 ):
27
- dependencies .append ('enum' )
28
-
29
24
print ("List of dependencies : {0}" .format (str (dependencies )))
30
25
31
26
setup (
67
62
68
63
# Specify the Python versions you support here. In particular, ensure
69
64
# that you indicate whether you support Python 2, Python 3 or both.
70
- 'Programming Language :: Python :: 2.7' ,
71
65
'Programming Language :: Python :: 3.6' ,
72
66
],
73
67
You can’t perform that action at this time.
0 commit comments