policyengine-us 1.403.2__py3-none-any.whl → 1.405.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.

Potentially problematic release.


This version of policyengine-us might be problematic. Click here for more details.

Files changed (28) hide show
  1. policyengine_us/parameters/gov/states/household/state_agis.yaml +3 -3
  2. policyengine_us/parameters/gov/states/tx/dart/monthly_pass_cost/full_fare.yaml +11 -0
  3. policyengine_us/parameters/gov/states/tx/dart/monthly_pass_cost/reduced_fare.yaml +11 -0
  4. policyengine_us/parameters/gov/states/tx/dart/qualifying_programs.yaml +19 -0
  5. policyengine_us/parameters/gov/states/tx/dart/reduced_fare/age_threshold/child.yaml +23 -0
  6. policyengine_us/parameters/gov/states/tx/dart/reduced_fare/age_threshold/senior.yaml +10 -0
  7. policyengine_us/tests/policy/baseline/gov/states/tax/income/state_agi.yaml +191 -0
  8. policyengine_us/tests/policy/baseline/gov/states/tx/dart/free_ride/tx_dart_free_ride_benefit.yaml +132 -0
  9. policyengine_us/tests/policy/baseline/gov/states/tx/dart/free_ride/tx_dart_free_ride_eligible_young_child.yaml +56 -0
  10. policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_age_eligible.yaml +90 -0
  11. policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_eligible.yaml +146 -0
  12. policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_program_eligible.yaml +206 -0
  13. policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/tx_dart_reduced_fare_benefit.yaml +145 -0
  14. policyengine_us/tests/policy/baseline/gov/states/tx/dart/tx_dart_benefit_person.yaml +141 -0
  15. policyengine_us/tests/test_batched.py +9 -5
  16. policyengine_us/variables/gov/states/tax/income/state_agi.py +47 -0
  17. policyengine_us/variables/gov/states/tx/dart/free_ride/tx_dart_free_ride_benefit.py +18 -0
  18. policyengine_us/variables/gov/states/tx/dart/free_ride/tx_dart_free_ride_eligible_young_child.py +19 -0
  19. policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_age_eligible.py +23 -0
  20. policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_eligible.py +40 -0
  21. policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_program_eligible.py +18 -0
  22. policyengine_us/variables/gov/states/tx/dart/reduced_fare/tx_dart_reduced_fare_benefit.py +17 -0
  23. policyengine_us/variables/gov/states/tx/dart/tx_dart_benefit_person.py +18 -0
  24. {policyengine_us-1.403.2.dist-info → policyengine_us-1.405.0.dist-info}/METADATA +1 -1
  25. {policyengine_us-1.403.2.dist-info → policyengine_us-1.405.0.dist-info}/RECORD +28 -8
  26. {policyengine_us-1.403.2.dist-info → policyengine_us-1.405.0.dist-info}/WHEEL +0 -0
  27. {policyengine_us-1.403.2.dist-info → policyengine_us-1.405.0.dist-info}/entry_points.txt +0 -0
  28. {policyengine_us-1.403.2.dist-info → policyengine_us-1.405.0.dist-info}/licenses/LICENSE +0 -0
@@ -8,3 +8,50 @@ class state_agi(Variable):
8
8
  unit = USD
9
9
  definition_period = YEAR
10
10
  adds = "gov.states.household.state_agis"
11
+
12
+ def formula(tax_unit, period, parameters):
13
+ # States that adopt the federal AGI
14
+ # Based on comments in state_agis.yaml
15
+ FEDERAL_AGI_STATES = [
16
+ "CO", # Colorado
17
+ "MI", # Michigan
18
+ "MN", # Minnesota
19
+ "NC", # North Carolina
20
+ "ND", # North Dakota
21
+ "NM", # New Mexico
22
+ "SC", # South Carolina
23
+ ]
24
+
25
+ # Get the current state
26
+ state_code = tax_unit.household("state_code_str", period)
27
+
28
+ # Get the sum of state-specific AGIs
29
+ state_specific_base = add(
30
+ tax_unit,
31
+ period,
32
+ parameters(period).gov.states.household.state_agis,
33
+ )
34
+
35
+ # Special handling for states that have separate individual and joint AGI calculations
36
+ # Arkansas and Delaware use different AGI calculations based on filing status
37
+ STATES_WITH_INDIVIDUAL_JOINT_AGI = ["AR", "DE"]
38
+
39
+ # Calculate maximum AGI for states with individual/joint distinction
40
+ # This ensures we use the higher of the two calculations
41
+ for state in STATES_WITH_INDIVIDUAL_JOINT_AGI:
42
+ is_state = state_code == state
43
+ indiv_var = f"{state.lower()}_agi_indiv"
44
+ joint_var = f"{state.lower()}_agi_joint"
45
+ indiv_agi = add(tax_unit, period, [indiv_var])
46
+ joint_agi = add(tax_unit, period, [joint_var])
47
+ max_agi = max_(indiv_agi, joint_agi)
48
+ state_specific_base = where(is_state, max_agi, state_specific_base)
49
+
50
+ # Check if the state adopts federal AGI
51
+ uses_federal = np.isin(state_code, FEDERAL_AGI_STATES)
52
+
53
+ # Get federal AGI
54
+ federal_agi = tax_unit("adjusted_gross_income", period)
55
+
56
+ # Return federal AGI for states that adopt it, otherwise state-specific
57
+ return where(uses_federal, federal_agi, state_specific_base)
@@ -0,0 +1,18 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_free_ride_benefit(Variable):
5
+ value_type = float
6
+ entity = Person
7
+ label = "Dallas Area Rapid Transit (DART) free ride benefit value"
8
+ unit = USD
9
+ definition_period = YEAR
10
+ defined_for = "tx_dart_free_ride_eligible_young_child"
11
+ reference = (
12
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
13
+ )
14
+
15
+ def formula(person, period, parameters):
16
+ p = parameters(period).gov.states.tx.dart.monthly_pass_cost
17
+ # Currently only include the monthly pass costs
18
+ return p.full_fare * MONTHS_IN_YEAR
@@ -0,0 +1,19 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_free_ride_eligible_young_child(Variable):
5
+ value_type = bool
6
+ entity = Person
7
+ label = "Eligible young child for Dallas Area Rapid Transit (DART) Free Ride program"
8
+ definition_period = YEAR
9
+ defined_for = StateCode.TX
10
+ reference = (
11
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
12
+ )
13
+
14
+ def formula(person, period, parameters):
15
+ p = parameters(period).gov.states.tx.dart.reduced_fare.age_threshold
16
+ age = person("age", period)
17
+ # Under 5 years old - children under 5 ride free
18
+ # The first threshold in the child parameter is 5 (the age when reduced fare starts)
19
+ return age < p.child.thresholds[1]
@@ -0,0 +1,23 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_reduced_fare_age_eligible(Variable):
5
+ value_type = bool
6
+ entity = Person
7
+ label = "Eligible for Dallas Area Rapid Transit (DART) Reduced Fare program due to age"
8
+ definition_period = YEAR
9
+ defined_for = StateCode.TX
10
+ reference = (
11
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
12
+ )
13
+
14
+ def formula(person, period, parameters):
15
+ p = parameters(period).gov.states.tx.dart.reduced_fare.age_threshold
16
+ age = person("age", period)
17
+
18
+ # Senior (65+)
19
+ senior_eligible = age >= p.senior
20
+ # Child (5-14)
21
+ child_eligible = p.child.calc(age)
22
+
23
+ return senior_eligible | child_eligible
@@ -0,0 +1,40 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_reduced_fare_eligible(Variable):
5
+ value_type = bool
6
+ entity = Person
7
+ label = (
8
+ "Eligible for Dallas Area Rapid Transit (DART) Reduced Fare program"
9
+ )
10
+ definition_period = YEAR
11
+ defined_for = StateCode.TX
12
+ reference = (
13
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
14
+ )
15
+
16
+ def formula(person, period, parameters):
17
+ # Eligible due to age
18
+ age_eligible = person("tx_dart_reduced_fare_age_eligible", period)
19
+ # Disability
20
+ is_disabled = person("is_disabled", period)
21
+ # Veteran
22
+ veteran_eligible = person("is_veteran", period)
23
+ # Student (high school, college, or trade school)
24
+ student_eligible = person("is_full_time_student", period)
25
+ # Enrolled in applicable programs (Discount GoPass)
26
+ # Note: DART has two separate programs that both offer 50% discounts:
27
+ # 1. Reduced Fare program (for age/disability/veteran/student)
28
+ # 2. Discount GoPass program (for assistance program recipients)
29
+ # We combine them here since they provide identical benefits
30
+ enrolled_eligible = person(
31
+ "tx_dart_reduced_fare_program_eligible", period
32
+ )
33
+
34
+ return (
35
+ age_eligible
36
+ | is_disabled
37
+ | veteran_eligible
38
+ | student_eligible
39
+ | enrolled_eligible
40
+ )
@@ -0,0 +1,18 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_reduced_fare_program_eligible(Variable):
5
+ value_type = bool
6
+ entity = Person
7
+ label = "Eligible for Dallas Area Rapid Transit (DART) Reduced Fare program due to qualifying program enrollment"
8
+ definition_period = YEAR
9
+ defined_for = StateCode.TX
10
+ reference = "https://www.dart.org/fare/general-fares-and-overview/discount-gopass-tap-card"
11
+
12
+ # The Discount GoPass program provides 50% fare reduction for riders enrolled
13
+ # in qualifying assistance programs. It is the same as Reduced Fare program.
14
+ # This uses the 'adds' parameter to check if the person receives benefits from any
15
+ # program listed in qualifying_programs.yaml
16
+ # (SNAP, Medicaid, Medicare, CHIP, TANF, WIC, etc.)
17
+ # Note: Some programs like CEAP and DHA Housing are listed but not yet modeled
18
+ adds = "gov.states.tx.dart.qualifying_programs"
@@ -0,0 +1,17 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_reduced_fare_benefit(Variable):
5
+ value_type = float
6
+ entity = Person
7
+ label = "Dallas Area Rapid Transit (DART) reduced fare benefit value"
8
+ unit = USD
9
+ definition_period = YEAR
10
+ defined_for = "tx_dart_reduced_fare_eligible"
11
+ reference = (
12
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
13
+ )
14
+
15
+ def formula(person, period, parameters):
16
+ p = parameters(period).gov.states.tx.dart.monthly_pass_cost
17
+ return (p.full_fare - p.reduced_fare) * MONTHS_IN_YEAR
@@ -0,0 +1,18 @@
1
+ from policyengine_us.model_api import *
2
+
3
+
4
+ class tx_dart_benefit_person(Variable):
5
+ value_type = float
6
+ entity = Person
7
+ label = "Dallas Area Rapid Transit (DART) benefit value per person"
8
+ unit = USD
9
+ definition_period = YEAR
10
+ defined_for = StateCode.TX
11
+ reference = (
12
+ "https://www.dart.org/fare/general-fares-and-overview/reduced-fares"
13
+ )
14
+
15
+ def formula(person, period, parameters):
16
+ free_ride_benefit = person("tx_dart_free_ride_benefit", period)
17
+ reduced_fare_benefit = person("tx_dart_reduced_fare_benefit", period)
18
+ return max_(free_ride_benefit, reduced_fare_benefit)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: policyengine-us
3
- Version: 1.403.2
3
+ Version: 1.405.0
4
4
  Summary: Add your description here.
5
5
  Author-email: PolicyEngine <hello@policyengine.org>
6
6
  License-File: LICENSE
@@ -1496,7 +1496,7 @@ policyengine_us/parameters/gov/states/hi/tax/income/rates/surviving_spouse.yaml,
1496
1496
  policyengine_us/parameters/gov/states/hi/tax/income/subtractions/subtractions.yaml,sha256=cu3w_VALYlIUDOMotEm_ml9QmxHSHDKDzbTN4buwrzc,805
1497
1497
  policyengine_us/parameters/gov/states/hi/tax/income/subtractions/military_pay/cap.yaml,sha256=uoW4QDI4tk0M7fC5g7BTnLLgdceFdBICYQjDbY0uKeA,1440
1498
1498
  policyengine_us/parameters/gov/states/household/index.yaml,sha256=rHA75ZOkRKkoYkd4zjChiGfJF_G--G2ZfwG3LZLIf6I,85
1499
- policyengine_us/parameters/gov/states/household/state_agis.yaml,sha256=V5yMo4kdJNs6mTfb74zh0Ab60sVYanjKS6_5Z4Df3YI,1405
1499
+ policyengine_us/parameters/gov/states/household/state_agis.yaml,sha256=g8v3zmB_-csvkhPguTc9wkyBIWYCQ_c1U8GvQIEJ10w,1572
1500
1500
  policyengine_us/parameters/gov/states/household/state_cdccs.yaml,sha256=fty017ekyhn18FQZsyD7xYY252N4f00hXO2m4X3yY3I,1441
1501
1501
  policyengine_us/parameters/gov/states/household/state_ctcs.yaml,sha256=QpaOJi7kPJNlfGDVpQCX9KmNQ8uJM935g0HMHZFFdow,1321
1502
1502
  policyengine_us/parameters/gov/states/household/state_eitcs.yaml,sha256=omnf0hIxS-F9qpDdyyH0L1mJ91R1qQF65-sjsfQZosw,1187
@@ -2790,6 +2790,11 @@ policyengine_us/parameters/gov/states/sc/tax/income/subtractions/retirement/cap.
2790
2790
  policyengine_us/parameters/gov/states/sc/tax/income/subtractions/retirement/subtract_military.yaml,sha256=Ynfbmp6Y11WuKUvuSnbkAwKeh5cTaTuQUXBahGTmOHI,1327
2791
2791
  policyengine_us/parameters/gov/states/tx/README.md,sha256=x_Gzkr6c45-uNe4weu6yJvI6OlpfqOm-13oYEUBI_O0,8
2792
2792
  policyengine_us/parameters/gov/states/tx/index.yaml,sha256=rHA75ZOkRKkoYkd4zjChiGfJF_G--G2ZfwG3LZLIf6I,85
2793
+ policyengine_us/parameters/gov/states/tx/dart/qualifying_programs.yaml,sha256=SHn3vcVfgrEIQqbPLMhInKfBiJ3owBPVeS2KUu5n7jw,760
2794
+ policyengine_us/parameters/gov/states/tx/dart/monthly_pass_cost/full_fare.yaml,sha256=IIB1j44pMvViKeu308I1IBAmsJ2BmBNQMJWiOaEy_S0,341
2795
+ policyengine_us/parameters/gov/states/tx/dart/monthly_pass_cost/reduced_fare.yaml,sha256=9CpamProPEh_mqPq_M5bAcc13AEkMZ5Kk5j-XM5xDK4,367
2796
+ policyengine_us/parameters/gov/states/tx/dart/reduced_fare/age_threshold/child.yaml,sha256=N_rMXb6wj0V8n_BWH389K54PvYIoHc8ZTtZ8M0fgdss,720
2797
+ policyengine_us/parameters/gov/states/tx/dart/reduced_fare/age_threshold/senior.yaml,sha256=2xAE95i7EjipEEiqhs8ueTpK8iXeMgRAL16krpSGA00,399
2793
2798
  policyengine_us/parameters/gov/states/tx/tanf/README.md,sha256=pl7ABGVc6yj_se0EwKp4k5CnR96YHhRHRJtxeha0Kko,7
2794
2799
  policyengine_us/parameters/gov/states/tx/tanf/monthly_income_limit.yaml,sha256=f4ZM3pHnz94T2-_Rm869qKd6giq56e1A4yaMjKAQMHQ,746
2795
2800
  policyengine_us/parameters/gov/states/ut/README.md,sha256=2n4RUtXc0zVy3tsjRpj2JwLc-xlMyDQG7jtZsYhCvU8,7
@@ -3210,7 +3215,7 @@ policyengine_us/reforms/tax_exempt/tax_exempt_reform.py,sha256=bkW91XMJ-jd23nhq4
3210
3215
  policyengine_us/reforms/treasury/__init__.py,sha256=406jIbu32B57tUKhVLflWxlXf3S4SWjclVqlEtMeMwg,92
3211
3216
  policyengine_us/reforms/treasury/repeal_dependent_exemptions.py,sha256=-xyMCtUK_dIBn2aAmhPW8pJEZjxcgOZzWKEUSI3w5e8,1354
3212
3217
  policyengine_us/tests/run_selective_tests.py,sha256=xQiFaJH3z7PCh9IHXyUU9zC2dTT9K75XlFyjCeP_OBo,23139
3213
- policyengine_us/tests/test_batched.py,sha256=K1LN3IIbWIioXWpFXZ6Hlch-BeglV3QPc1zxAbUeP-M,11491
3218
+ policyengine_us/tests/test_batched.py,sha256=pLxGExkqsOrB6g9SqJ_GDn-Cr6v7M-XWWzwTkOi6IOg,11821
3214
3219
  policyengine_us/tests/code_health/parameters.py,sha256=e9VKC8dmmB_dTafOO90WJuVu-PAogoLAaa5QZd2rY-s,1126
3215
3220
  policyengine_us/tests/code_health/variable_names.py,sha256=hY4ucqPwBD7v_fvnBpzexJDf0yCGpF4Sueff4z4rQ24,554
3216
3221
  policyengine_us/tests/microsimulation/test_microsim.py,sha256=_yT0ljW8aWjAOgSCWPH0vBv6jUJ4H_XM4clcg01mH1k,1181
@@ -4907,9 +4912,17 @@ policyengine_us/tests/policy/baseline/gov/states/sc/tax/income/subtractions/mili
4907
4912
  policyengine_us/tests/policy/baseline/gov/states/sc/tax/income/subtractions/retirement/sc_retirement_cap.yaml,sha256=gQC32zajIaISb11XUjg1ih3povH830ljcjdNL6svm5Q,394
4908
4913
  policyengine_us/tests/policy/baseline/gov/states/sc/tax/income/subtractions/retirement/sc_retirement_deduction_indv.yaml,sha256=FOQSybn-Ond-w-efoq8ooNdHKzLXMuBOFs1LvYRd5II,1170
4909
4914
  policyengine_us/tests/policy/baseline/gov/states/sc/tax/income/subtractions/retirement/sc_retirement_deduction_survivors.yaml,sha256=UVY5cIaYoqZCSVmos01g0ELNBfwRwiUw_I5djJkRRW8,915
4915
+ policyengine_us/tests/policy/baseline/gov/states/tax/income/state_agi.yaml,sha256=XrNZ5hn8oYOTQcjHJg2kX2TKvUqYWuJDnq1OISS6EBs,4270
4910
4916
  policyengine_us/tests/policy/baseline/gov/states/tax/income/state_income_tax.yaml,sha256=OPDi52nx8kZM6N6W3La-OX94BSu7fjFGfxhmcD3xC7Q,1182
4911
4917
  policyengine_us/tests/policy/baseline/gov/states/tax/income/state_itemized_deductions.yaml,sha256=fS8Z5X6C4Yjn1weAEIWc6fgGBGaIU3tGBwg9hc13jZg,5322
4912
4918
  policyengine_us/tests/policy/baseline/gov/states/tax/income/state_standard_deduction.yaml,sha256=D-RhJbtaZ7ZepUpRGCS3JF3WnNLijSMi93v_V_luUQ0,4889
4919
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/tx_dart_benefit_person.yaml,sha256=exDqyJq-1JQIVmLCg8gat-FvWCjIJhZCT4FithuoVHA,2906
4920
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/free_ride/tx_dart_free_ride_benefit.yaml,sha256=Y4TPOIactkWT9l_pxocX68LCzH97BbEeyBI_iWbYMVs,2779
4921
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/free_ride/tx_dart_free_ride_eligible_young_child.yaml,sha256=v-v3WOTVVIJtX_3OZYRTvh-G_9pK79VakrTcoLVD9uo,1113
4922
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/tx_dart_reduced_fare_benefit.yaml,sha256=xNgS8ZNv02tRroS0ydL4IRVGdyU_-icI-rbZFkrFB48,2939
4923
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_age_eligible.yaml,sha256=XH865IatUm0mbAbwWgUILfp9XdECpZT-yrd3kqT1feI,1783
4924
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_eligible.yaml,sha256=mzUYLQyoLIf8KeoeF7yKQ5xyIGVB35fX4cNef7F8Lac,2790
4925
+ policyengine_us/tests/policy/baseline/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_program_eligible.yaml,sha256=tA3qnDcT392VXNpVhBSS7ITSZcIOngB_k8oD6rcE0Sg,4868
4913
4926
  policyengine_us/tests/policy/baseline/gov/states/tx/tanf/tx_tanf_income_limit.yaml,sha256=pNC3o3Ps_6o0EnSDb1mzQrHt10gGZhD7bW15SU_T2tI,388
4914
4927
  policyengine_us/tests/policy/baseline/gov/states/ut/tax/income/integration.yaml,sha256=ywuvJ3afrcrtkiXjit6m0LfOCLIfAr3fpm7xXzzcMGg,1297
4915
4928
  policyengine_us/tests/policy/baseline/gov/states/ut/tax/income/ut_income_tax_before_credits.yaml,sha256=JmDB8-C4IZ6y0BbyzjyOIFmZuF2a44p5RlKILLdlvEo,198
@@ -7651,7 +7664,7 @@ policyengine_us/variables/gov/states/sc/tax/income/subtractions/retirement/sc_re
7651
7664
  policyengine_us/variables/gov/states/sc/tax/income/subtractions/retirement/sc_retirement_deduction_indv.py,sha256=heq12iBuxi1DAhNt2hBTCqTeqhfBGf_4LmD1UwFYhWg,1205
7652
7665
  policyengine_us/variables/gov/states/sc/tax/income/subtractions/retirement/sc_retirement_deduction_survivors.py,sha256=IDa4phIEeYhhNEPm984Lzw4IdU_o0egKYx-P1ZMgHAA,1403
7653
7666
  policyengine_us/variables/gov/states/tax/income/_generate_state_mfs_variables.py,sha256=iwWvzqqJWhFG2LYdrg-O-wJrYor-Zi1j0SLQxualLOI,5229
7654
- policyengine_us/variables/gov/states/tax/income/state_agi.py,sha256=EEY5Cs6KrcsbcRSQ_rxRUHfRLpJPvkJHFUNwaemIMdA,244
7667
+ policyengine_us/variables/gov/states/tax/income/state_agi.py,sha256=Dv2je5jMALWH8nt2QzIjN6vK_OidW4R2TTxP3BKH7l8,2134
7655
7668
  policyengine_us/variables/gov/states/tax/income/state_cdcc.py,sha256=OiNkMrBaUyO2cSCQb2-dw9r9LWPub0eRzCKTnVhrGsY,260
7656
7669
  policyengine_us/variables/gov/states/tax/income/state_ctc.py,sha256=d-raaxBerVUMFKe-slydIubXcZsoFJvLY40CbS4voT8,239
7657
7670
  policyengine_us/variables/gov/states/tax/income/state_eitc.py,sha256=GGK-ZclrfH2iVLfyNxNer_QzkVUWNHHyTrXDJLd1O9k,249
@@ -7665,6 +7678,13 @@ policyengine_us/variables/gov/states/tax/income/state_standard_deduction.py,sha2
7665
7678
  policyengine_us/variables/gov/states/tax/income/state_taxable_income.py,sha256=Jx6E2o7t8GIqqa5KrBgsWLL0Cou2pI3yqftU3Jwyv4M,259
7666
7679
  policyengine_us/variables/gov/states/tax/income/state_withheld_income_tax.py,sha256=xVIdWx_74oFSU5styx17mY3zravdReEwnZBr0sDLko0,290
7667
7680
  policyengine_us/variables/gov/states/tax/sales/state_sales_tax.py,sha256=OEbqEJBjhBGDkr0PMPwYnBqGXEyb7OMJuKg1jQpqpgA,840
7681
+ policyengine_us/variables/gov/states/tx/dart/tx_dart_benefit_person.py,sha256=-bycbUbrTnH9-Jb3amf7gAL6g69-MdzyTmbb8NjMew4,630
7682
+ policyengine_us/variables/gov/states/tx/dart/free_ride/tx_dart_free_ride_benefit.py,sha256=z6PxOjLgKUTLqRlDnopYFK-ySv8iC-ubw1U1wdoNuqc,617
7683
+ policyengine_us/variables/gov/states/tx/dart/free_ride/tx_dart_free_ride_eligible_young_child.py,sha256=T9Go2jN4Y28uFZMm61g9o5yh8BV5_A70mZ5R5twxPI0,743
7684
+ policyengine_us/variables/gov/states/tx/dart/reduced_fare/tx_dart_reduced_fare_benefit.py,sha256=oDEoFl6aJCKO-LF5h_JBsyiazMSL0cU6xTV0Dcr_L1U,577
7685
+ policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_age_eligible.py,sha256=a8Cv6sfXu6H3yp3HhnFk8hEnVueyuhifUz5RBQnSefs,728
7686
+ policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_eligible.py,sha256=ofoBToD_pJ9RX4M9XiKXiZWI4qWdDeIhtNvAVU1O24I,1441
7687
+ policyengine_us/variables/gov/states/tx/dart/reduced_fare/eligibility/tx_dart_reduced_fare_program_eligible.py,sha256=8SGVaR1d84RmAfwGrYHvRHndtS36zA5CwPMhLQ9nHVg,904
7668
7688
  policyengine_us/variables/gov/states/tx/tanf/tx_tanf_income_limit.py,sha256=8O9M4QkG532dsMLKXe9yyRGY_fRCjN6sqWnDUzlTvYw,549
7669
7689
  policyengine_us/variables/gov/states/ut/README.md,sha256=JejErxrT7pBikQzTXA3jm2IRzAqBwwiyCpUgBcJBQMU,1644
7670
7690
  policyengine_us/variables/gov/states/ut/tax/income/ut_income_tax.py,sha256=JNGaNbMxlF4odCHofyhXqn5hCd-NBJnGNi3JzOU4RLY,417
@@ -8450,8 +8470,8 @@ policyengine_us/variables/input/farm_income.py,sha256=BEKxYmHNNnWJAAvULl5qZJigy5
8450
8470
  policyengine_us/variables/input/geography.py,sha256=Ux0ueAf0rhZaflyEqz81UuXP3xKCKBDvoO3CrKhiQEc,5421
8451
8471
  policyengine_us/variables/input/self_employment_income.py,sha256=PwsGz8R4lRikKWUYOhsC0qosNNLXq4f5SQmfw4S3mk8,511
8452
8472
  policyengine_us/variables/input/self_employment_income_before_lsr.py,sha256=E8fcX9Nlyqz8dziHhQv_euutdmoIwFMMWePUwbbwv_w,379
8453
- policyengine_us-1.403.2.dist-info/METADATA,sha256=hhNIvVIs2URw7NY6lJq-LAI4C2AneHIeE2gKh_x2ePQ,1649
8454
- policyengine_us-1.403.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
8455
- policyengine_us-1.403.2.dist-info/entry_points.txt,sha256=MLaqNyNTbReALyKNkde85VkuFFpdPWAcy8VRG1mjczc,57
8456
- policyengine_us-1.403.2.dist-info/licenses/LICENSE,sha256=2N5ReRelkdqkR9a-KP-y-shmcD5P62XoYiG-miLTAzo,34519
8457
- policyengine_us-1.403.2.dist-info/RECORD,,
8473
+ policyengine_us-1.405.0.dist-info/METADATA,sha256=5arF4WPq8i9MvEZRXCxtHhZjbRBVvrXvwKmj2gHiclE,1649
8474
+ policyengine_us-1.405.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
8475
+ policyengine_us-1.405.0.dist-info/entry_points.txt,sha256=MLaqNyNTbReALyKNkde85VkuFFpdPWAcy8VRG1mjczc,57
8476
+ policyengine_us-1.405.0.dist-info/licenses/LICENSE,sha256=2N5ReRelkdqkR9a-KP-y-shmcD5P62XoYiG-miLTAzo,34519
8477
+ policyengine_us-1.405.0.dist-info/RECORD,,