python-taxes 0.2.0__tar.gz → 0.4.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.2.0 → python_taxes-0.4.0}/PKG-INFO +8 -4
  2. {python_taxes-0.2.0 → python_taxes-0.4.0}/README.md +3 -2
  3. {python_taxes-0.2.0 → python_taxes-0.4.0}/pyproject.toml +6 -3
  4. {python_taxes-0.2.0 → python_taxes-0.4.0}/LICENSE +0 -0
  5. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/__init__.py +0 -0
  6. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/__init__.py +0 -0
  7. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/__init__.py +0 -0
  8. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/payroll/__init__.py +0 -0
  9. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/payroll/automated.py +0 -0
  10. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/tables/percentage/__init__.py +0 -0
  11. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/tables/percentage/automated/__init__.py +0 -0
  12. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/tables/percentage/automated/hoh.py +0 -0
  13. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/tables/percentage/automated/married.py +0 -0
  14. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/income/tables/percentage/automated/single.py +0 -0
  15. {python_taxes-0.2.0 → python_taxes-0.4.0}/src/python_taxes/federal/medicare.py +0 -0
  16. {python_taxes-0.2.0 → python_taxes-0.4.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.2.0
3
+ Version: 0.4.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.12,<4.0
28
+ Requires-Python: >=3.10,<4.0
29
29
  Classifier: Development Status :: 4 - Beta
30
30
  Classifier: Intended Audience :: Developers
31
31
  Classifier: Intended Audience :: Information Technology
@@ -34,8 +34,11 @@ Classifier: Operating System :: OS Independent
34
34
  Classifier: Programming Language :: Python
35
35
  Classifier: Programming Language :: Python :: 3
36
36
  Classifier: Programming Language :: Python :: 3 :: Only
37
+ Classifier: Programming Language :: Python :: 3.10
38
+ Classifier: Programming Language :: Python :: 3.11
37
39
  Classifier: Programming Language :: Python :: 3.12
38
40
  Classifier: Programming Language :: Python :: 3.13
41
+ Classifier: Typing :: Typed
39
42
  Classifier: Topic :: Software Development :: Libraries
40
43
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
41
44
  Requires-Dist: pydantic (>=2.11.3,<3.0.0)
@@ -44,8 +47,9 @@ Project-URL: Source, https://github.com/stacynoland/python-taxes
44
47
  Description-Content-Type: text/markdown
45
48
 
46
49
  ![Python Taxes Image](https://github.com/user-attachments/assets/6c62946b-e749-46bb-a84e-6321397f1753)
47
- ![Python Versions](https://img.shields.io/badge/Python-3.12%20%7C%203.13-blue?logo=python&logoColor=yellow)
48
- [![GitHub Release](https://img.shields.io/github/v/release/stacynoland/python-taxes?include_prereleases&label=Current%20Release)](https://github.com/stacynoland/python-taxes/releases)
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)
49
53
  [![Tests](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml/badge.svg)](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
50
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)
51
55
  [![Poetry Package Manager](https://img.shields.io/endpoint?url=https%3A%2F%2Fpython-poetry.org%2Fbadge%2Fv0.json)](https://python-poetry.org/)
@@ -1,6 +1,7 @@
1
1
  ![Python Taxes Image](https://github.com/user-attachments/assets/6c62946b-e749-46bb-a84e-6321397f1753)
2
- ![Python Versions](https://img.shields.io/badge/Python-3.12%20%7C%203.13-blue?logo=python&logoColor=yellow)
3
- [![GitHub Release](https://img.shields.io/github/v/release/stacynoland/python-taxes?include_prereleases&label=Current%20Release)](https://github.com/stacynoland/python-taxes/releases)
2
+ ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-taxes?logo=python&logoColor=yellow&label=Python)
3
+ [![GitHub Release](https://img.shields.io/github/v/release/stacynoland/python-taxes?label=Current%20Release)](https://github.com/stacynoland/python-taxes/releases)
4
+ ![PyPI - Status](https://img.shields.io/pypi/status/python-taxes?label=Status)
4
5
  [![Tests](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml/badge.svg)](https://github.com/stacynoland/python-taxes/actions/workflows/test.yml)
5
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)
6
7
  [![Poetry Package Manager](https://img.shields.io/endpoint?url=https%3A%2F%2Fpython-poetry.org%2Fbadge%2Fv0.json)](https://python-poetry.org/)
@@ -1,13 +1,13 @@
1
1
  [project]
2
2
  name = "python-taxes"
3
- version = "0.2.0"
3
+ version = "0.4.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.12,<4.0"
10
+ requires-python = ">=3.10,<4.0"
11
11
  dependencies = [
12
12
  "pydantic (>=2.11.3,<3.0.0)"
13
13
  ]
@@ -20,8 +20,11 @@ classifiers = [
20
20
  "Programming Language :: Python",
21
21
  "Programming Language :: Python :: 3",
22
22
  "Programming Language :: Python :: 3 :: Only",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
23
25
  "Programming Language :: Python :: 3.12",
24
26
  "Programming Language :: Python :: 3.13",
27
+ "Typing :: Typed",
25
28
  "Topic :: Software Development :: Libraries",
26
29
  "Topic :: Software Development :: Libraries :: Python Modules",
27
30
  ]
@@ -45,7 +48,7 @@ pre-commit = "^4.2.0"
45
48
 
46
49
  [tool.tox]
47
50
  requires = ["tox>=4.25.0,<5.0.0"]
48
- env_list = ["3.13", "3.12", "type", "lint", "format"]
51
+ env_list = ["py3", "type", "lint", "format"]
49
52
 
50
53
  [dependency-groups]
51
54
  pytest = [
File without changes