Metadata-Version: 2.1
Name: cs2tc
Version: 0.1.1
Summary: Helper functions for converting Compute Studio parameters to a format compatible with Tax-Calculator.
Home-page: https://github.com/hdoupe/cs2tc
Author: Hank Doupe
Author-email: henrymdoupe@gmail.com
License: UNKNOWN
Description: # cs2tc
        
        Helper functions for converting Compute Studio parameters to a format compatible with Tax-Calculator.
        
        ```
        pip install -U cs2tc
        ```
        
        ```python
        import cs2tc
        
        adj = {
            "STD": [
                {"MARS": "single", "year": 2019, "value": 10},
                {"MARS": "mjoint", "year": 2019, "value": 1},
                {"MARS": "mjoint", "year": 2022, "value": 10}
            ],
            "STD_checkbox": [{"value": False}]
        }
        
        cs2tc.convert_policy_adjustment(adj)
        
        # {'STD': [{'MARS': 'single', 'year': 2019, 'value': 10},
        #   {'MARS': 'mjoint', 'year': 2019, 'value': 1},
        #   {'MARS': 'mjoint', 'year': 2022, 'value': 10}],
        #  'STD-indexed': [{'value': False}]}
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
