We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8521de + 283079c commit fdac6c6Copy full SHA for fdac6c6
setup.py
@@ -11,7 +11,7 @@
11
12
__author__ = "Casper da Costa-Luis <casper.dcl@physics.org>"
13
__licence__ = "Apache-2.0"
14
-__version__ = "1.0.3"
+__version__ = "1.0.4"
15
src_dir = os.path.abspath(os.path.dirname(__file__))
16
17
# Execute Makefile commands if specified
@@ -43,7 +43,10 @@
43
platforms=["any"],
44
packages=["shtab"],
45
provides=["shtab"],
46
- install_requires=["argparse; python_version < '3.2'"],
+ install_requires=[
47
+ "argparse; python_version < '2.7'"
48
+ " or ('3.0' <= python_version and python_version < '3.2')"
49
+ ],
50
extras_require={"dev": requirements_dev},
51
entry_points={"console_scripts": ["shtab=shtab:main.main"]},
52
package_data={"shtab": ["LICENCE"]},
0 commit comments