python-taxes 0.5.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,89 +1,91 @@
1
- from decimal import Decimal
2
- from typing import Annotated, Literal
3
-
4
- from pydantic import StrictBool, validate_call
5
-
6
- from python_taxes import currency_field
7
- from python_taxes.federal import rounding
8
-
9
- STANDARD_PERCENT = Decimal("1.45") / 100
10
-
11
- SELF_EMPLOYED_PERCENT = Decimal("2.9") / 100
12
-
13
- ADDITIONAL_PERCENT = Decimal("0.9") / 100
14
-
15
- DEFAULT_THRESHOLD = Decimal("200000")
16
-
17
- status_threshold = {
18
- "single": DEFAULT_THRESHOLD,
19
- "married": Decimal("250000"),
20
- "separate": Decimal("125000"),
21
- "hoh": DEFAULT_THRESHOLD,
22
- }
23
-
24
-
25
- @validate_call
26
- def required_withholding(
27
- taxable_wages: Annotated[Decimal, currency_field],
28
- taxable_wages_ytd: Annotated[Decimal, currency_field] = Decimal("0.00"),
29
- self_employed: StrictBool = False,
30
- rounded: StrictBool = False,
31
- ) -> Decimal:
32
- """Calculate required amount to withhold regardless of filing status.
33
-
34
- Parameters:
35
- taxable_wages -- Wages earned this period
36
- taxable_wages_ytd -- Wages earned this year
37
- self_employed -- True if self-employed (default False)
38
- rounded -- Round to nearest whole dollar amount (default False)
39
- """
40
-
41
- if self_employed:
42
- tax_rate = SELF_EMPLOYED_PERCENT
43
- taxable_wages = taxable_wages * (Decimal("92.35") / 100)
44
- taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
45
- else:
46
- tax_rate = STANDARD_PERCENT
47
-
48
- if (
49
- taxable_wages > DEFAULT_THRESHOLD
50
- or (taxable_wages_ytd + taxable_wages) > DEFAULT_THRESHOLD
51
- ):
52
- tax_rate = tax_rate + ADDITIONAL_PERCENT
53
-
54
- return (taxable_wages * tax_rate).quantize(rounding[rounded])
55
-
56
-
57
- @validate_call
58
- def additional_withholding(
59
- taxable_wages_ytd: Annotated[Decimal, currency_field],
60
- filing_status: Literal["single", "married", "separate", "hoh"] = "single",
61
- self_employed: StrictBool = False,
62
- rounded: StrictBool = False,
63
- ) -> Decimal:
64
- """Calculate withholding based on status.
65
-
66
- Parameters:
67
- taxable_wages_ytd -- Wages earned this year
68
- filing_status -- Filing status (default 'single')
69
- self_employed -- True if self-employed (default False)
70
- rounded -- Round to nearest whole dollar amount (default False)
71
- """
72
-
73
- if self_employed:
74
- tax_rate = SELF_EMPLOYED_PERCENT
75
- taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
76
- else:
77
- tax_rate = STANDARD_PERCENT
78
-
79
- threshold = status_threshold[filing_status]
80
-
81
- if taxable_wages_ytd > threshold:
82
- wages_over_threshold = taxable_wages_ytd - threshold
83
- med_taxes = (taxable_wages_ytd - wages_over_threshold) * tax_rate
84
- tax_rate = tax_rate + ADDITIONAL_PERCENT
85
- med_taxes = med_taxes + (wages_over_threshold * tax_rate)
86
- else:
87
- med_taxes = taxable_wages_ytd * tax_rate
88
-
89
- return med_taxes.quantize(rounding[rounded])
1
+ from decimal import Decimal
2
+ from typing import Annotated, Literal
3
+
4
+ from pydantic import StrictBool, validate_call
5
+
6
+ from python_taxes import currency_field
7
+ from python_taxes.federal import rounding
8
+
9
+ STANDARD_PERCENT = Decimal("1.45") / 100
10
+
11
+ SELF_EMPLOYED_PERCENT = Decimal("2.9") / 100
12
+
13
+ ADDITIONAL_PERCENT = Decimal("0.9") / 100
14
+
15
+ DEFAULT_THRESHOLD = Decimal("200000")
16
+
17
+ status_threshold = {
18
+ "single": DEFAULT_THRESHOLD,
19
+ "married": Decimal("250000"),
20
+ "separate": Decimal("125000"),
21
+ "hoh": DEFAULT_THRESHOLD,
22
+ }
23
+
24
+
25
+ @validate_call
26
+ def required_withholding(
27
+ taxable_wages: Annotated[Decimal, currency_field],
28
+ taxable_wages_ytd: Annotated[Decimal, currency_field] = Decimal("0.00"),
29
+ self_employed: StrictBool = False,
30
+ rounded: StrictBool = False,
31
+ ) -> Decimal:
32
+ """Calculate required amount to withhold regardless of filing status.
33
+
34
+ Parameters:
35
+ taxable_wages -- Wages earned this period
36
+ taxable_wages_ytd -- Wages earned this year
37
+ self_employed -- True if self-employed (default False)
38
+ rounded -- Round to nearest whole dollar amount (default False)
39
+ """
40
+
41
+ if self_employed:
42
+ tax_rate = SELF_EMPLOYED_PERCENT
43
+ taxable_wages = taxable_wages * (Decimal("92.35") / 100)
44
+ taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
45
+ else:
46
+ tax_rate = STANDARD_PERCENT
47
+
48
+ if (
49
+ taxable_wages > DEFAULT_THRESHOLD
50
+ or (taxable_wages_ytd + taxable_wages) > DEFAULT_THRESHOLD
51
+ ):
52
+ tax_rate = tax_rate + ADDITIONAL_PERCENT
53
+
54
+ return (taxable_wages * tax_rate).quantize(rounding[rounded])
55
+
56
+
57
+ @validate_call
58
+ def additional_withholding(
59
+ taxable_wages_ytd: Annotated[Decimal, currency_field],
60
+ filing_status: Annotated[
61
+ str, Literal["single", "married", "separate", "hoh"]
62
+ ] = "single",
63
+ self_employed: StrictBool = False,
64
+ rounded: StrictBool = False,
65
+ ) -> Decimal:
66
+ """Calculate withholding based on status.
67
+
68
+ Parameters:
69
+ taxable_wages_ytd -- Wages earned this year
70
+ filing_status -- Filing status (default 'single')
71
+ self_employed -- True if self-employed (default False)
72
+ rounded -- Round to nearest whole dollar amount (default False)
73
+ """
74
+
75
+ if self_employed:
76
+ tax_rate = SELF_EMPLOYED_PERCENT
77
+ taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
78
+ else:
79
+ tax_rate = STANDARD_PERCENT
80
+
81
+ threshold = status_threshold[filing_status]
82
+
83
+ if taxable_wages_ytd > threshold:
84
+ wages_over_threshold = taxable_wages_ytd - threshold
85
+ med_taxes = (taxable_wages_ytd - wages_over_threshold) * tax_rate
86
+ tax_rate = tax_rate + ADDITIONAL_PERCENT
87
+ med_taxes = med_taxes + (wages_over_threshold * tax_rate)
88
+ else:
89
+ med_taxes = taxable_wages_ytd * tax_rate
90
+
91
+ return med_taxes.quantize(rounding[rounded])
@@ -1,57 +1,55 @@
1
- from decimal import Decimal
2
- from typing import Annotated
3
-
4
- from pydantic import AfterValidator, StrictBool, validate_call
5
-
6
- from python_taxes import CURRENT_TAX_YEAR, currency_field
7
- from python_taxes.federal import is_valid_tax_year, rounding
8
-
9
- STANDARD_TAX = Decimal("6.200") / 100
10
-
11
- SELF_EMPLOYED_TAX = Decimal("12.400") / 100
12
-
13
- wage_limit = {
14
- 2023: Decimal("160200"),
15
- 2024: Decimal("168600"),
16
- 2025: Decimal("176100"),
17
- }
18
-
19
-
20
- @validate_call
21
- def withholding(
22
- taxable_wages: Annotated[Decimal, currency_field],
23
- taxable_wages_ytd: Annotated[Decimal, currency_field] = Decimal("0.00"),
24
- self_employed: StrictBool = False,
25
- tax_year: Annotated[int, AfterValidator(is_valid_tax_year)] = CURRENT_TAX_YEAR,
26
- rounded: StrictBool = False,
27
- ) -> Decimal:
28
- """
29
- Social security tax withholding.
30
-
31
- Parameters:
32
- taxable_wages -- Wages earned this period
33
- taxable_wages_ytd -- Wages earned this year
34
- self_employed -- True if self-employed (default False)
35
- tax_year -- Year for which you are filing (default CURRENT_TAX_YEAR)
36
- rounded -- Round to nearest whole dollar amount (default False)
37
- """
38
-
39
- if self_employed:
40
- tax_rate = SELF_EMPLOYED_TAX
41
- taxable_wages = taxable_wages * (Decimal("92.35") / 100)
42
- print("Taxable Wages: ", taxable_wages)
43
- taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
44
- print("Taxable Wages YTD: ", taxable_wages_ytd)
45
- else:
46
- tax_rate = STANDARD_TAX
47
-
48
- limit = wage_limit[tax_year]
49
-
50
- if taxable_wages_ytd > limit:
51
- return Decimal("0.00") # Tax is 0 because limit is reached
52
-
53
- if (taxable_wages + taxable_wages_ytd) > limit:
54
- over = (taxable_wages + taxable_wages_ytd) - limit
55
- taxable_wages = taxable_wages - over
56
-
57
- return (taxable_wages * tax_rate).quantize(rounding[rounded])
1
+ from decimal import Decimal
2
+ from typing import Annotated
3
+
4
+ from pydantic import AfterValidator, StrictBool, validate_call
5
+
6
+ from python_taxes import CURRENT_TAX_YEAR, currency_field
7
+ from python_taxes.federal import is_valid_tax_year, rounding
8
+
9
+ STANDARD_TAX = Decimal("6.200") / 100
10
+
11
+ SELF_EMPLOYED_TAX = Decimal("12.400") / 100
12
+
13
+ wage_limit = {
14
+ 2023: Decimal("160200"),
15
+ 2024: Decimal("168600"),
16
+ 2025: Decimal("176100"),
17
+ }
18
+
19
+
20
+ @validate_call
21
+ def withholding(
22
+ taxable_wages: Annotated[Decimal, currency_field],
23
+ taxable_wages_ytd: Annotated[Decimal, currency_field] = Decimal("0.00"),
24
+ self_employed: StrictBool = False,
25
+ tax_year: Annotated[int, AfterValidator(is_valid_tax_year)] = CURRENT_TAX_YEAR,
26
+ rounded: StrictBool = False,
27
+ ) -> Decimal:
28
+ """
29
+ Social security tax withholding.
30
+
31
+ Parameters:
32
+ taxable_wages -- Wages earned this period
33
+ taxable_wages_ytd -- Wages earned this year
34
+ self_employed -- True if self-employed (default False)
35
+ tax_year -- Year for which you are filing (default CURRENT_TAX_YEAR)
36
+ rounded -- Round to nearest whole dollar amount (default False)
37
+ """
38
+
39
+ if self_employed:
40
+ tax_rate = SELF_EMPLOYED_TAX
41
+ taxable_wages = taxable_wages * (Decimal("92.35") / 100)
42
+ taxable_wages_ytd = taxable_wages_ytd * (Decimal("92.35") / 100)
43
+ else:
44
+ tax_rate = STANDARD_TAX
45
+
46
+ limit = wage_limit[tax_year]
47
+
48
+ if taxable_wages_ytd > limit:
49
+ return Decimal("0.00") # Tax is 0 because limit is reached
50
+
51
+ if (taxable_wages + taxable_wages_ytd) > limit:
52
+ over = (taxable_wages + taxable_wages_ytd) - limit
53
+ taxable_wages = taxable_wages - over
54
+
55
+ return (taxable_wages * tax_rate).quantize(rounding[rounded])
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Stacy Noland
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Stacy Noland
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-taxes
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Summary: A Python library for calculating US Social Security, Medicare, and Federal Income taxes.
5
5
  License: MIT License
6
6
 
@@ -24,7 +24,7 @@ License: MIT License
24
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
25
  SOFTWARE.
26
26
  Author: Stacy Noland
27
- Author-email: 46572585+stacynoland@users.noreply.github.com
27
+ Author-email: stacy.noland@outlook.com
28
28
  Requires-Python: >=3.10
29
29
  Classifier: Development Status :: 4 - Beta
30
30
  Classifier: Intended Audience :: Developers
@@ -38,21 +38,23 @@ Classifier: Programming Language :: Python :: 3.10
38
38
  Classifier: Programming Language :: Python :: 3.11
39
39
  Classifier: Programming Language :: Python :: 3.12
40
40
  Classifier: Programming Language :: Python :: 3.13
41
- Classifier: Typing :: Typed
42
41
  Classifier: Topic :: Software Development :: Libraries
43
42
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
43
+ Classifier: Typing :: Typed
44
+ Provides-Extra: cli
44
45
  Requires-Dist: pydantic (>=2.11.3,<3.0.0)
46
+ Requires-Dist: typer (>=0.15.0,<1.0.0) ; extra == "cli"
45
47
  Project-URL: Homepage, https://github.com/stacynoland/python-taxes
46
48
  Project-URL: Source, https://github.com/stacynoland/python-taxes
47
49
  Description-Content-Type: text/markdown
48
50
 
49
51
  ![Python Taxes Image](https://github.com/user-attachments/assets/6c62946b-e749-46bb-a84e-6321397f1753)
50
- ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-taxes?logo=python&logoColor=yellow&label=Python)
51
- [![GitHub Release](https://img.shields.io/github/v/release/stacynoland/python-taxes?label=Current%20Release)](https://github.com/stacynoland/python-taxes/releases)
52
- ![PyPI - Status](https://img.shields.io/pypi/status/python-taxes?label=Status)
53
- [![Tests](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml/badge.svg)](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
54
- ![Coverage](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fstacynoland%2Fpython-taxes%2Frefs%2Fheads%2Fmain%2Fcoverage.json&query=%24.totals.percent_covered_display&suffix=%25&label=Coverage&color=3fb831)
55
- [![Black](https://img.shields.io/badge/Code%20Style-black-000000)](https://github.com/psf/black)
52
+ [![Tests](https://github.com/stacynoland/python-taxes/actions/workflows/tests.yml/badge.svg)](https://github.com/stacynoland/python-taxes/actions/workflows/tests.yml)
53
+ ![Coverage](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fstacynoland.com%2Fpython-taxes%2Fcoverage.json&query=%24.totals.percent_covered_display&suffix=%25&label=coverage&color=3fb831)
54
+ ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-taxes?logo=python&logoColor=yellow)
55
+ [![PyPI - Version](https://img.shields.io/pypi/v/python-taxes)](https://pypi.org/project/python-taxes/)
56
+ ![PyPI - Status](https://img.shields.io/pypi/status/python-taxes)
57
+ [![Black](https://img.shields.io/badge/code%20style-black-000000)](https://github.com/psf/black)
56
58
 
57
59
  > Disclaimer: This library is not intended to be used for tax advice. Please consult a tax professional for any tax-related questions or concerns.
58
60
 
@@ -0,0 +1,19 @@
1
+ python_taxes/__init__.py,sha256=YEbYYcHvqUm1UPVeSGoqEL_DdZhGFNTRZ9q19Zmzfvk,143
2
+ python_taxes/__main__.py,sha256=NmlJYInBV15AiGDR-6Q4OFdhfBp83ucon3biPW18S9I,75
3
+ python_taxes/cli.py,sha256=taRx5AsxQBU99Dp79-Pp_OIdSohiXUT95pfDZ6OPIiw,4080
4
+ python_taxes/federal/__init__.py,sha256=VB0kbb3pwt1g114XYsB0Zwba2yqXZu6j8ESqdRW8M-I,424
5
+ python_taxes/federal/income/__init__.py,sha256=8qaQAiepigo7b2VUQ3qesOIo-q5korFebg_qMbv9EOk,96
6
+ python_taxes/federal/income/payroll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ python_taxes/federal/income/payroll/automated.py,sha256=9fbsB8Kj-W6nqEp8Xs9l5fqBdHzfWG61bkq4nXHG6Cg,6286
8
+ python_taxes/federal/income/tables/percentage/__init__.py,sha256=noWyAbYYlTmPyRTcHmZMy_ug3fzQquOijQJJiJaIgpU,470
9
+ python_taxes/federal/income/tables/percentage/automated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ python_taxes/federal/income/tables/percentage/automated/hoh.py,sha256=NXrph43Lyvqdgqjfe5nPeT5yMAKy9_kBXYM90jSTIRg,8470
11
+ python_taxes/federal/income/tables/percentage/automated/married.py,sha256=JL4FvHlb1Id3dQDKfuRrlGf8gfUjsmHIVPmp4oHvpH0,8490
12
+ python_taxes/federal/income/tables/percentage/automated/single.py,sha256=s3G_O-TvK0EPYyOR27JtKdu4QPjO7SjU8chkd0TYH7w,8456
13
+ python_taxes/federal/medicare.py,sha256=BD9qgMSMGsFh2npOb_dk6bsdJexpbPVBVul_cWxyJDg,2823
14
+ python_taxes/federal/social_security.py,sha256=hAeoxbUWdBS4K9IscHuTymS2SpQXWy-kRyzOR04jFJg,1731
15
+ python_taxes-0.6.0.dist-info/LICENSE,sha256=rnEHoV1_wsGI820IknmbflTydk9cRmdnFDW-fdahioc,1069
16
+ python_taxes-0.6.0.dist-info/METADATA,sha256=VVs2s5ldpgtRNbY8uC5piZuFk_AXzAA-ffzLctNOl-Q,6811
17
+ python_taxes-0.6.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
18
+ python_taxes-0.6.0.dist-info/entry_points.txt,sha256=wJ2aRYcZ3MSygPF8ccumyZ6ClFmBTRJj9JTIEimAGhc,46
19
+ python_taxes-0.6.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.2
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ pytax=python_taxes.cli:app
3
+
@@ -1,16 +0,0 @@
1
- python_taxes/__init__.py,sha256=Ik5XwXbg3MHgViKIDG3flx2bHK2rVjKZsKeaVmpzXdc,150
2
- python_taxes/federal/__init__.py,sha256=l5FP5RVNh29ce_y-N1SyNXeD7M7NAsEpV5Vs7qV66yU,443
3
- python_taxes/federal/income/__init__.py,sha256=w0--WOCcq1_y_XWpp4QhBDzEHr6A1cUP-L2UhQqZQOQ,100
4
- python_taxes/federal/income/payroll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- python_taxes/federal/income/payroll/automated.py,sha256=m_WTb9t6o20O4xKs06CwaOK377vRQmuagJLO8IVmaaE,6185
6
- python_taxes/federal/income/tables/percentage/__init__.py,sha256=mNIpA4IU-sELTiI6aNdhVkiLGpV9GLgMzR6opZ-0wBc,485
7
- python_taxes/federal/income/tables/percentage/automated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- python_taxes/federal/income/tables/percentage/automated/hoh.py,sha256=Jcs5fV66KBHD4nvD_ZBT-DMc4r0gcateNZf6b0nz2GM,8779
9
- python_taxes/federal/income/tables/percentage/automated/married.py,sha256=BG6bRObCEnggZD5MvFQMQK7_ydq7J6_v1CP9c7QUbEU,8799
10
- python_taxes/federal/income/tables/percentage/automated/single.py,sha256=DyZXPLnY3XQxMxCSLRdUR1oZuxAg7qpdHKCk1g0zt64,8765
11
- python_taxes/federal/medicare.py,sha256=_xspuO9cWr6X5gLCgxS3IMQFWOid1PCrFTo-kmxoqmQ,2882
12
- python_taxes/federal/social_security.py,sha256=ZTDY0hY7EK7S1ES8G6Ax7itRSD5kaPJdxRB0SJrpWaw,1892
13
- python_taxes-0.5.0.dist-info/LICENSE,sha256=qXDZCZ5wi5heCp0R_uncT3yCAHireFaSFQjphGDMFU0,1090
14
- python_taxes-0.5.0.dist-info/METADATA,sha256=Purq7wmkxKZVJ5zRUF7zHtfUUo3O7Y51NG5lsNa3VEI,6886
15
- python_taxes-0.5.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
16
- python_taxes-0.5.0.dist-info/RECORD,,