We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dab7cb8 + a4a498e commit b9fe2e4Copy full SHA for b9fe2e4
requirements.txt
@@ -1,3 +1,3 @@
1
-simplejson==2.0.9
2
-redis==2.4.12
+simplejson>=2.0.9
+redis>=2.4.12
3
setproctitle>=1.0
setup.py
@@ -20,10 +20,9 @@
20
pyres_worker=pyres.scripts:pyres_worker
21
""",
22
install_requires=[
23
- 'simplejson>=2.0.9',
24
- 'redis==2.4.12',
25
- 'setproctitle>=1.0'
26
- ],
+ item for item in
+ open("requirements.txt").read().split("\n")
+ if item],
27
classifiers = [
28
'Development Status :: 4 - Beta',
29
'Environment :: Console',
0 commit comments