Files @ 83e6e80bb89c
Branch filter:

Location: NPO-Accounting/conservancy_beancount/setup.py

bkuhn
meta_payroll_type — US:PTO — distinguish between Earned and Taken

Metadata `payroll-type` will go on `Liabilities:Payable:Vacation` and
`Expenses:Payroll:Salary`, but we need to distinguish as to whether
the Payroll was earned or taken.

Later, `Liabilities:Payable:Vacation` should require a
`payroll-type` metadata of either `US:PTO:Taken` or `US:PTO:Earned`,
and the `CA:` equivalents.
1
2
3
4
5
6
7
#!/usr/bin/env python3
"""setup.py - setuptools compatibility shim"""

import setuptools

if __name__ == "__main__":
    setuptools.setup()