python-taxes 0.4.0__tar.gz → 0.5.0__tar.gz
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.
- {python_taxes-0.4.0 → python_taxes-0.5.0}/PKG-INFO +2 -3
- {python_taxes-0.4.0 → python_taxes-0.5.0}/README.md +0 -1
- {python_taxes-0.4.0 → python_taxes-0.5.0}/pyproject.toml +2 -2
- {python_taxes-0.4.0 → python_taxes-0.5.0}/LICENSE +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/automated.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/__init__.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/hoh.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/married.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/single.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/medicare.py +0 -0
- {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/social_security.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: python-taxes
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.0
|
4
4
|
Summary: A Python library for calculating US Social Security, Medicare, and Federal Income taxes.
|
5
5
|
License: MIT License
|
6
6
|
|
@@ -25,7 +25,7 @@ License: MIT License
|
|
25
25
|
SOFTWARE.
|
26
26
|
Author: Stacy Noland
|
27
27
|
Author-email: 46572585+stacynoland@users.noreply.github.com
|
28
|
-
Requires-Python: >=3.10
|
28
|
+
Requires-Python: >=3.10
|
29
29
|
Classifier: Development Status :: 4 - Beta
|
30
30
|
Classifier: Intended Audience :: Developers
|
31
31
|
Classifier: Intended Audience :: Information Technology
|
@@ -52,7 +52,6 @@ Description-Content-Type: text/markdown
|
|
52
52
|

|
53
53
|
[](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
|
54
54
|

|
55
|
-
[](https://python-poetry.org/)
|
56
55
|
[](https://github.com/psf/black)
|
57
56
|
|
58
57
|
> Disclaimer: This library is not intended to be used for tax advice. Please consult a tax professional for any tax-related questions or concerns.
|
@@ -4,7 +4,6 @@
|
|
4
4
|

|
5
5
|
[](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
|
6
6
|

|
7
|
-
[](https://python-poetry.org/)
|
8
7
|
[](https://github.com/psf/black)
|
9
8
|
|
10
9
|
> Disclaimer: This library is not intended to be used for tax advice. Please consult a tax professional for any tax-related questions or concerns.
|
@@ -1,13 +1,13 @@
|
|
1
1
|
[project]
|
2
2
|
name = "python-taxes"
|
3
|
-
version = "0.
|
3
|
+
version = "0.5.0"
|
4
4
|
description = "A Python library for calculating US Social Security, Medicare, and Federal Income taxes."
|
5
5
|
authors = [
|
6
6
|
{name = "Stacy Noland", email = "46572585+stacynoland@users.noreply.github.com"}
|
7
7
|
]
|
8
8
|
readme = "README.md"
|
9
9
|
license = { file = "LICENSE" }
|
10
|
-
requires-python = ">=3.10
|
10
|
+
requires-python = ">=3.10"
|
11
11
|
dependencies = [
|
12
12
|
"pydantic (>=2.11.3,<3.0.0)"
|
13
13
|
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/__init__.py
RENAMED
File without changes
|
{python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/automated.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|