Commit 8d961729 authored by Boris Kocherov's avatar Boris Kocherov

use argparse dependence only if python<2.7

parent 0ff799eb
......@@ -18,10 +18,12 @@ install_requires = [
'psutil>=3.0.0',
'lxml',
'python-magic',
'argparse',
'erp5.util'
]
if sys.version_info < (2, 7):
install_requires.append('argparse')
setup(name='cloudooo',
version=version,
description="XML-RPC document conversion server",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment