We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 847ec5b + c0450f7 commit 90f5edaCopy full SHA for 90f5eda
1 file changed
setup.py
@@ -22,8 +22,16 @@ def find_version(*file_paths):
22
return version_match.group(1)
23
raise RuntimeError("Unable to find version string.")
24
25
-with open('requirements.txt') as f:
26
- install_requires = f.read().splitlines()
+
+install_requires = [
27
+ 'docopt >= 0.6.1, < 0.7',
28
+ 'PyYAML >= 3.10, < 4',
29
+ 'requests >= 2.2.1, < 3',
30
+ 'texttable >= 0.8.1, < 0.9',
31
+ 'websocket-client >= 0.11.0, < 0.12',
32
+ 'dockerpty >= 0.2.3, < 0.3',
33
+]
34
35
36
with open('requirements-dev.txt') as f:
37
tests_require = f.read().splitlines()
0 commit comments