Files
suite/l10n_us_hr_payroll/__manifest__.py
Jared Kipe 7fb54683e5 IMP Allow FICA Exemption (e.g. for F1 Student Visa)
Additionally, improve requirements on `hr_workers_comp_payroll`
2018-08-27 15:55:24 -07:00

33 lines
845 B
Python
Executable File

# -*- encoding: utf-8 -*-
{
'name': 'USA - Payroll',
'author': 'Hibou Corp. <hello@hibou.io>',
'license': 'AGPL-3',
'category': 'Localization',
'depends': ['hr_payroll'],
'version': '11.0.2018.1.0',
'description': """
USA Payroll Rules.
==================
* Contract W4 Filing Status & Allowances
* FICA Social Security (with wages cap)
* FICA Medicare
* FICA Additioal Medicare Wages & Tax
* FUTA Federal Unemployment (with wages cap)
* Federal Income Tax Withholdings based on W4 values
""",
'auto_install': False,
'website': 'https://hibou.io/',
'data': [
'l10n_us_hr_payroll_view.xml',
'data/base.xml',
'data/rules_2016.xml',
'data/rules_2017.xml',
'data/rules_2018.xml',
'data/final.xml',
],
'installable': True
}