File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 16
16
'cbapi.psc.livequery'
17
17
]
18
18
19
- install_requires = [
19
+ install_requires = [
20
20
'requests' ,
21
21
'attrdict' ,
22
22
'cachetools' ,
23
23
'pyyaml' ,
24
24
'pika' ,
25
25
'prompt_toolkit' ,
26
26
'pygments' ,
27
- 'pytest<=5.0' ,
28
27
'python-dateutil' ,
29
28
'protobuf' ,
30
29
'solrq' ,
31
30
'validators'
32
31
]
33
32
33
+ tests_requires = [
34
+ 'pytest<=5.0'
35
+ ]
36
+
34
37
if sys .version_info < (2 , 7 ):
35
38
install_requires .extend (['simplejson' , 'total-ordering' , 'ordereddict' ])
36
39
if sys .version_info < (3 , 0 ):
46
49
description = 'Carbon Black REST API Python Bindings' ,
47
50
packages = packages ,
48
51
include_package_data = True ,
49
- package_dir = {'' : 'src' },
52
+ package_dir = {'' : 'src' },
50
53
zip_safe = False ,
51
54
platforms = 'any' ,
52
55
install_requires = install_requires ,
56
+ tests_requires = tests_requires ,
53
57
classifiers = [
54
58
'Environment :: Web Environment' ,
55
59
'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments