summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/__init__.py b/__init__.py
index 9479b85..d9504cf 100644
--- a/__init__.py
+++ b/__init__.py
@@ -5,16 +5,21 @@ from __future__ import print_function
# install_requires of ruamel.base is not really required but the old
# ruamel.base installed __init__.py, and thus a new version should
# be installed at some point
-_package_data = dict(
- full_package_name="ruamel.std.argparse",
- version_info=(0, 6, 0),
- author='Anthon van der Neut',
- author_email='a.van.der.neut@ruamel.eu',
- description="Enhancements to argparse: extra actions, subparser aliases, smart formatter, a decorator based wrapper", # NOQA
- entry_points=None,
- install_requires=['ruamel.base>=1.0.0'],
- universal=True,
-)
+
+null = None
+_package_data = { # JSON
+ "full_package_name": "ruamel.std.argparse",
+ "version_info": [0, 6, 1],
+ "author": "Anthon van der Neut",
+ "author_email": "a.van.der.neut@ruamel.eu",
+ "description": "Enhancements to argparse: extra actions, subparser aliases, smart formatter, a decorator based wrapper", # NOQA
+ "entry_points": null,
+ "universal": 1,
+ "install_requires": {
+ "any": ["ruamel.base>=1.0.0"],
+ "py26": ["argparse"] # tox needs this so it is difficult to test
+ }
+} # JSON
# < from ruamel.util.new import _convert_version