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.
Files changed (16) hide show
  1. {python_taxes-0.4.0 → python_taxes-0.5.0}/PKG-INFO +2 -3
  2. {python_taxes-0.4.0 → python_taxes-0.5.0}/README.md +0 -1
  3. {python_taxes-0.4.0 → python_taxes-0.5.0}/pyproject.toml +2 -2
  4. {python_taxes-0.4.0 → python_taxes-0.5.0}/LICENSE +0 -0
  5. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/__init__.py +0 -0
  6. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/__init__.py +0 -0
  7. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/__init__.py +0 -0
  8. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/__init__.py +0 -0
  9. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/payroll/automated.py +0 -0
  10. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/__init__.py +0 -0
  11. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/__init__.py +0 -0
  12. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/hoh.py +0 -0
  13. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/married.py +0 -0
  14. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/income/tables/percentage/automated/single.py +0 -0
  15. {python_taxes-0.4.0 → python_taxes-0.5.0}/src/python_taxes/federal/medicare.py +0 -0
  16. {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.4.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,<4.0
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
  ![PyPI - Status](https://img.shields.io/pypi/status/python-taxes?label=Status)
53
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
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
- [![Poetry Package Manager](https://img.shields.io/endpoint?url=https%3A%2F%2Fpython-poetry.org%2Fbadge%2Fv0.json)](https://python-poetry.org/)
56
55
  [![Black](https://img.shields.io/badge/Code%20Style-black-000000)](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
  ![PyPI - Status](https://img.shields.io/pypi/status/python-taxes?label=Status)
5
5
  [![Tests](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml/badge.svg)](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
6
6
  ![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)
7
- [![Poetry Package Manager](https://img.shields.io/endpoint?url=https%3A%2F%2Fpython-poetry.org%2Fbadge%2Fv0.json)](https://python-poetry.org/)
8
7
  [![Black](https://img.shields.io/badge/Code%20Style-black-000000)](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.4.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,<4.0"
10
+ requires-python = ">=3.10"
11
11
  dependencies = [
12
12
  "pydantic (>=2.11.3,<3.0.0)"
13
13
  ]
File without changes