codac 2.0.0.dev23__cp314-cp314-win32.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.
Files changed (76) hide show
  1. codac/__init__.py +4 -0
  2. codac/_core.cp314-win32.pyd +0 -0
  3. codac/_graphics.cp314-win32.pyd +0 -0
  4. codac/_unsupported.cp314-win32.pyd +0 -0
  5. codac/core/__init__.py +588 -0
  6. codac/graphics/__init__.py +1 -0
  7. codac/tests/__init__.py +1 -0
  8. codac/tests/codac2_tests_predefined_tubes.py +193 -0
  9. codac/tests/test_AnalyticFunction.py +442 -0
  10. codac/tests/test_AnalyticTraj.py +62 -0
  11. codac/tests/test_Approx.py +27 -0
  12. codac/tests/test_BoolInterval.py +96 -0
  13. codac/tests/test_Color.py +77 -0
  14. codac/tests/test_ConvexPolygon.py +300 -0
  15. codac/tests/test_CtcAction.py +30 -0
  16. codac/tests/test_CtcCartProd.py +39 -0
  17. codac/tests/test_CtcCtcBoundary.py +48 -0
  18. codac/tests/test_CtcDeriv.py +434 -0
  19. codac/tests/test_CtcEval.py +214 -0
  20. codac/tests/test_CtcFixpoint.py +65 -0
  21. codac/tests/test_CtcInter.py +39 -0
  22. codac/tests/test_CtcInverse.py +213 -0
  23. codac/tests/test_CtcInverseNotIn.py +129 -0
  24. codac/tests/test_CtcLazy.py +50 -0
  25. codac/tests/test_CtcPolygon.py +91 -0
  26. codac/tests/test_CtcSegment.py +104 -0
  27. codac/tests/test_Ellipsoid.py +20 -0
  28. codac/tests/test_GaussJordan.py +34 -0
  29. codac/tests/test_IntFullPivLU.py +84 -0
  30. codac/tests/test_Interval.py +254 -0
  31. codac/tests/test_IntervalMatrix.py +664 -0
  32. codac/tests/test_IntervalVector.py +657 -0
  33. codac/tests/test_Interval_operations.py +293 -0
  34. codac/tests/test_Matrix.py +81 -0
  35. codac/tests/test_OctaSym.py +41 -0
  36. codac/tests/test_Parallelepiped.py +34 -0
  37. codac/tests/test_Parallelepiped_eval.py +62 -0
  38. codac/tests/test_Polygon.py +120 -0
  39. codac/tests/test_SampledTraj.py +135 -0
  40. codac/tests/test_Segment.py +138 -0
  41. codac/tests/test_SepCartProd.py +34 -0
  42. codac/tests/test_SepCtcBoundary.py +52 -0
  43. codac/tests/test_SepInverse.py +104 -0
  44. codac/tests/test_SepPolygon.py +102 -0
  45. codac/tests/test_SepProj.py +39 -0
  46. codac/tests/test_SepTransform.py +41 -0
  47. codac/tests/test_Slice.py +78 -0
  48. codac/tests/test_Slice_polygon.py +208 -0
  49. codac/tests/test_SlicedTube.py +562 -0
  50. codac/tests/test_SlicedTube_integral.py +380 -0
  51. codac/tests/test_TDomain.py +115 -0
  52. codac/tests/test_Vector.py +41 -0
  53. codac/tests/test_arithmetic_add.py +54 -0
  54. codac/tests/test_arithmetic_div.py +46 -0
  55. codac/tests/test_arithmetic_mul.py +114 -0
  56. codac/tests/test_arithmetic_sub.py +54 -0
  57. codac/tests/test_capd.py +19 -0
  58. codac/tests/test_cart_prod.py +37 -0
  59. codac/tests/test_eigen.py +19 -0
  60. codac/tests/test_geometry.py +136 -0
  61. codac/tests/test_hull.py +35 -0
  62. codac/tests/test_ibex.py +19 -0
  63. codac/tests/test_inversion.py +57 -0
  64. codac/tests/test_linear_ctc.py +77 -0
  65. codac/tests/test_operators.py +377 -0
  66. codac/tests/test_peibos.py +83 -0
  67. codac/tests/test_predefined_tubes.py +193 -0
  68. codac/tests/test_serialization.py +30 -0
  69. codac/tests/test_transformations.py +61 -0
  70. codac/tests/test_trunc.py +95 -0
  71. codac/unsupported/__init__.py +1 -0
  72. codac/version.py +1 -0
  73. codac-2.0.0.dev23.dist-info/METADATA +23 -0
  74. codac-2.0.0.dev23.dist-info/RECORD +76 -0
  75. codac-2.0.0.dev23.dist-info/WHEEL +5 -0
  76. codac-2.0.0.dev23.dist-info/top_level.txt +1 -0
@@ -0,0 +1,61 @@
1
+ #!/usr/bin/env python
2
+
3
+ # Codac tests
4
+ # ----------------------------------------------------------------------------
5
+ # \date 2024
6
+ # \author Simon Rohou
7
+ # \copyright Copyright 2024 Codac Team
8
+ # \license GNU Lesser General Public License (LGPL)
9
+
10
+ import unittest
11
+ from codac import *
12
+ import sys
13
+
14
+ class TestTransformations(unittest.TestCase):
15
+
16
+ def test_affine_transformation(self):
17
+
18
+ # Building the src trajectory analytically
19
+
20
+ t = ScalarVar()
21
+ f_src = AnalyticFunction([t], [
22
+ cos(2*t)+0.1*cos(10*t),
23
+ 2*sin(t)+0.1*sin(10*t)
24
+ ])
25
+
26
+ src = AnalyticTraj(f_src,[-1,3]).sampled(0.01)
27
+
28
+ # The dst trajectory is obtained analytically with a
29
+ # transformation described by the parameters:
30
+
31
+ a = PI + PI/3 # rotation angle
32
+ b = 2.5 # scaling
33
+ T = Vector([ -3.2, 2.5 ]) # translation
34
+ f_dst = AnalyticFunction([t], [
35
+ b*cos(a)*f_src(t)[0]-b*sin(a)*f_src(t)[1] + T[0] + 0.05*cos(100*t),
36
+ b*sin(a)*f_src(t)[0]+b*cos(a)*f_src(t)[1] + T[1] + 0.05*sin(100*t)
37
+ ])
38
+
39
+ dst = AnalyticTraj(f_dst,[-1,3]).sampled(0.01)
40
+
41
+ # Computing the transformation
42
+
43
+ tr = affine_transformation(src, dst)
44
+
45
+ # Reconstructing the dst trajectory using the estimated transformation
46
+
47
+ dst_estim = SampledVectorTraj()
48
+ for ti,src_i in src:
49
+ dst_estim.set(tr*src_i, ti)
50
+
51
+ scale = tr.linear().col(0).norm()
52
+ rotation_matrix = tr.linear() / scale
53
+ rotation_angle = atan2(rotation_matrix(1, 0), rotation_matrix(0, 0))
54
+ translation = tr.translation()
55
+
56
+ self.assertTrue(Approx(scale,1e-3) == b)
57
+ self.assertTrue(Approx(rotation_angle,1e-3) == (a-2*PI))
58
+ self.assertTrue(Approx(Vector(translation),1e-3) == T)
59
+
60
+ if __name__ == '__main__':
61
+ unittest.main()
@@ -0,0 +1,95 @@
1
+ #!/usr/bin/env python
2
+
3
+ # Codac tests
4
+ # ----------------------------------------------------------------------------
5
+ # \date 2024
6
+ # \author Simon Rohou
7
+ # \copyright Copyright 2024 Codac Team
8
+ # \license GNU Lesser General Public License (LGPL)
9
+
10
+ import unittest
11
+ from codac import *
12
+ import sys
13
+
14
+ class TestTrunc(unittest.TestCase):
15
+
16
+ def test_trunc(self):
17
+
18
+ l = next_float(-oo); u = prev_float(oo)
19
+ self.assertTrue(trunc(0) == 0)
20
+ self.assertTrue(trunc(-oo) == l)
21
+ self.assertTrue(trunc(oo) == u)
22
+ self.assertTrue(untrunc(l) == -oo)
23
+ self.assertTrue(untrunc(u) == oo)
24
+ self.assertTrue(untrunc(0) == 0)
25
+
26
+ # trunc matrix types
27
+
28
+ self.assertTrue(trunc(IntervalMatrix([
29
+ [[-1,1],[-2,2]],
30
+ [[-3,3],[-4,4]]
31
+ ])) == IntervalMatrix([
32
+ [[-1,1],[-2,2]],
33
+ [[-3,3],[-4,4]]
34
+ ]))
35
+
36
+ self.assertTrue(trunc(IntervalMatrix([
37
+ [[-1,oo],[-2,2]],
38
+ [[-3,3],[-4,4]]
39
+ ])) == IntervalMatrix([
40
+ [[-1,u],[-2,2]],
41
+ [[-3,3],[-4,4]]
42
+ ]))
43
+
44
+ self.assertTrue(trunc(IntervalMatrix([
45
+ [[-oo,oo],[-2,2]],
46
+ [[-3,3],[-4,4]]
47
+ ])) == IntervalMatrix([
48
+ [[l,u],[-2,2]],
49
+ [[-3,3],[-4,4]]
50
+ ]))
51
+
52
+ self.assertTrue(trunc(IntervalMatrix([
53
+ [[-oo,oo],[-oo,oo]],
54
+ [[-oo,oo],[-oo,oo]]
55
+ ])) == IntervalMatrix([
56
+ [[l,u],[l,u]],
57
+ [[l,u],[l,u]]
58
+ ]))
59
+
60
+ # untrunc matrix types
61
+
62
+ self.assertTrue(untrunc(IntervalMatrix([
63
+ [[-1,1],[-2,2]],
64
+ [[-3,3],[-4,4]]
65
+ ])) == IntervalMatrix([
66
+ [[-1,1],[-2,2]],
67
+ [[-3,3],[-4,4]]
68
+ ]))
69
+
70
+ self.assertTrue(untrunc(IntervalMatrix([
71
+ [[-1,u],[-2,2]],
72
+ [[-3,3],[-4,4]]
73
+ ])) == IntervalMatrix([
74
+ [[-1,oo],[-2,2]],
75
+ [[-3,3],[-4,4]]
76
+ ]))
77
+
78
+ self.assertTrue(untrunc(IntervalMatrix([
79
+ [[l,u],[-2,2]],
80
+ [[-3,3],[-4,4]]
81
+ ])) == IntervalMatrix([
82
+ [[-oo,oo],[-2,2]],
83
+ [[-3,3],[-4,4]]
84
+ ]))
85
+
86
+ self.assertTrue(untrunc(IntervalMatrix([
87
+ [[l,u],[l,u]],
88
+ [[l,u],[l,u]]
89
+ ])) == IntervalMatrix([
90
+ [[-oo,oo],[-oo,oo]],
91
+ [[-oo,oo],[-oo,oo]]
92
+ ]))
93
+
94
+ if __name__ == '__main__':
95
+ unittest.main()
@@ -0,0 +1 @@
1
+ from codac._unsupported import *
codac/version.py ADDED
@@ -0,0 +1 @@
1
+ __version__="2.0.0"
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: codac
3
+ Version: 2.0.0.dev23
4
+ Summary: Codac is a library providing tools for constraint programming over reals and trajectories.
5
+ Home-page: http://codac.io
6
+ Author: Simon Rohou, Benoit Desrochers, Fabrice Le Bars
7
+ Author-email: simon.rohou@ensta.fr
8
+ License: LGPLv3+
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
11
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
12
+ Requires-Dist: pip>=19.0.0
13
+ Requires-Dist: vibes
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: home-page
19
+ Dynamic: license
20
+ Dynamic: requires-dist
21
+ Dynamic: summary
22
+
23
+ Codac is a library providing tools for constraint programming over reals and trajectories.
@@ -0,0 +1,76 @@
1
+ codac/__init__.py,sha256=FVU5ua2dUF5NQK9SModwYLKU9EWNftzb33e0vHpxdEs,121
2
+ codac/_core.cp314-win32.pyd,sha256=A_cbuEYAtujft4KfimwZRDvVjKPaP4WfYwsZyDI0ZZQ,5980160
3
+ codac/_graphics.cp314-win32.pyd,sha256=UyZQticL1Q-jIUPsTdApjbtPe3UChrXr8YfH-L9IbNM,1338880
4
+ codac/_unsupported.cp314-win32.pyd,sha256=BCBnbuRh1SI7LKOizfpn5uqx0LcR1NUW1FJ2bmFc-38,118272
5
+ codac/version.py,sha256=6aTsaEKyBHFdzQjDU6jvkF0BXPK1486LAfHKk-VQHKc,19
6
+ codac/core/__init__.py,sha256=eXx72_k934uuCUgijcxZFMQYdrK2vxl3LjBu8gxrIII,17103
7
+ codac/graphics/__init__.py,sha256=p-cFTVy8ffugIOpMN5qNWUShJo8aRB6_J3m-8EG99Rs,29
8
+ codac/tests/__init__.py,sha256=p2nc-vz1OyekHP7d82yXsE2hNAtyHREmhuKHBZDS4dg,67
9
+ codac/tests/codac2_tests_predefined_tubes.py,sha256=E-OaDmLrKL_dgxzg_itCFpYtc3B6lukLx-TnEcYqh1Y,5199
10
+ codac/tests/test_AnalyticFunction.py,sha256=tc5L4aBZ1Jt3zL3NO-qEhLO_DsuqIanzVuBGFtqccKk,23158
11
+ codac/tests/test_AnalyticTraj.py,sha256=CDA6DUq82Ppo2GU0FS-OgTWYYnYZTeKyDjHNJsX37Og,2415
12
+ codac/tests/test_Approx.py,sha256=nCfgn2QJqyKiR7q2IJSlzXg4kzli1oP46C7w69rMVfM,933
13
+ codac/tests/test_BoolInterval.py,sha256=fWmMwjpAai8zS-Bnlg5dtZe0KIgVuAlaCLfjm-olIw4,5696
14
+ codac/tests/test_Color.py,sha256=FGIoUw87MwemhVHvobUdAeEtLDIcAOMe3oOQj_rJ59s,2309
15
+ codac/tests/test_ConvexPolygon.py,sha256=uxl5q7YSDRpVvq0XoWvxxF7mDLmWDUdT6e57YNfh4X0,10264
16
+ codac/tests/test_CtcAction.py,sha256=S0MgVqQLwMVWtRhteJ8PMt1VvZ6OSQ76wWy68EfDdjA,810
17
+ codac/tests/test_CtcCartProd.py,sha256=eeS_nPKeAONohYfP_IhghM1v_gyx0AqroI7r5a7bjNw,1079
18
+ codac/tests/test_CtcCtcBoundary.py,sha256=36kY3b6QzN3WJKZI8ju6KQqCV-xG8CDiMkf3ya8yaJ4,1609
19
+ codac/tests/test_CtcDeriv.py,sha256=8VgzS6i2TOEjXf-ybUJyhwx4sgTCInpsfKmpBkKYtak,14096
20
+ codac/tests/test_CtcEval.py,sha256=hGm73l1Y5Y9g4VnUW1BNsOvvdGNA0uWk9g4D_eWxwHg,7105
21
+ codac/tests/test_CtcFixpoint.py,sha256=_ZgsrsvP1VX2-Tf_Bw-W_bUFStCtUEbNUdgpRjfvBtw,2056
22
+ codac/tests/test_CtcInter.py,sha256=SGlf3w-lhNn1AwWwFPnK36uY_pzbQjMxpa8zneKPRqk,1016
23
+ codac/tests/test_CtcInverse.py,sha256=ZP7kTDuQF0JqY-f33HUi_lgR_DlpkDp3rGvP1nEZIiM,7213
24
+ codac/tests/test_CtcInverseNotIn.py,sha256=Ks9WzmzJxGf6On8ZwG5YhXuwYs1n4Tsth8bTn3cGbwM,4310
25
+ codac/tests/test_CtcLazy.py,sha256=fRHXJjEe1fvocfApo0YHKE2rEuN-WSAC_1N1teD1neo,1420
26
+ codac/tests/test_CtcPolygon.py,sha256=y4RGqqQLQbZCYZ5LxgQkHy2RAtcmnvG4Ee0f431NXBs,2286
27
+ codac/tests/test_CtcSegment.py,sha256=wNTemeLs8N8miHIVmzywO0_vr32c2EH3N31R894Icjw,2777
28
+ codac/tests/test_Ellipsoid.py,sha256=SQri1Cz1XRur_9YjFw9r_ZjDwmC_qnCGjgLP3-Ixruw,482
29
+ codac/tests/test_GaussJordan.py,sha256=uQW8dd9vwisyatiPAr8b1oor2dIr3l4T6KMQ89RZ2qs,893
30
+ codac/tests/test_IntFullPivLU.py,sha256=DECUxHT9Rftu5X6W4IVVkH0wQmr1QOj2ao97Bu3qgvg,2881
31
+ codac/tests/test_Interval.py,sha256=OSKspf7as8gRcZcurh335JkFQefgwe5xW_jFscTCtQ0,10900
32
+ codac/tests/test_IntervalMatrix.py,sha256=faiYRieaNuVpB1ZCKFiFLpKSIN3mWZwgRng_ZLEXBus,17669
33
+ codac/tests/test_IntervalVector.py,sha256=s9T2WEyir7_JsIQ2sbvPlH4sQQqYGFTEdcs61XjgAEI,22165
34
+ codac/tests/test_Interval_operations.py,sha256=2EnYGEJ7hQUCsfxCTXEHmsrM5WZq4Sc9mLGLenth6i0,15488
35
+ codac/tests/test_Matrix.py,sha256=DvM_0qwW1cpc7YfuVWTbuKJC61TQFJV7oX9F7o9j4cA,1548
36
+ codac/tests/test_OctaSym.py,sha256=1iPWFPi9LiH8Q92h8-vzK3JVMTjZtZIAGUrfXqdukIg,1296
37
+ codac/tests/test_Parallelepiped.py,sha256=dhJLW51dkfimyQCtmh89Q0vS5Kjt19KrVq65JfSkhJ8,1237
38
+ codac/tests/test_Parallelepiped_eval.py,sha256=BwNHhsMPh-U42RzH3V2Q82ctsfIXuc2Nx-fZ9UB4JTQ,1938
39
+ codac/tests/test_Polygon.py,sha256=ngSAm1RmHo5w1QhWoQd2YvkhxMF3fJNv-aYmKvTuu90,5211
40
+ codac/tests/test_SampledTraj.py,sha256=KPfoY4k2aDmYeLkXg5FzEtTtsLIJqGk9y71xX-ERIms,4050
41
+ codac/tests/test_Segment.py,sha256=ECgdjSsjwppoDsXdOrMaoRhH8CCd9a5EUP1YCX1Q-bg,7229
42
+ codac/tests/test_SepCartProd.py,sha256=CHPfxz0pYF7TGb1-9fDWIzR29BRpmkyFtdrK7NeY3ic,1072
43
+ codac/tests/test_SepCtcBoundary.py,sha256=x6bM2eVkNhfk8Ak5eQPuSLxlJABljVoXX5Bfq2ACKkM,1841
44
+ codac/tests/test_SepInverse.py,sha256=rOoLso6bcAa3oCIHllkOeOmZYjR4E69thsRJ6Xn2TLg,3497
45
+ codac/tests/test_SepPolygon.py,sha256=uXZNIT6NkW4I2TpFeAWevR04X1Jqw6Phs7RE0Mc6phc,2779
46
+ codac/tests/test_SepProj.py,sha256=rUllB30orF-o8Y4_yDOtfBfIZ1nirCeCjUBk9S8KRME,1286
47
+ codac/tests/test_SepTransform.py,sha256=H_D3gqdPcrVzc8Zcyp4HnV9Z7B8UhIQDiYcBKcN5WSI,1471
48
+ codac/tests/test_Slice.py,sha256=54zkFqx10gU9scu1rr9zZioHWRc_I9vII8lv7zanXLM,2465
49
+ codac/tests/test_Slice_polygon.py,sha256=WG5IJHIqxgjE_CTMyblc2CEuTJLpsE21ar9QrDG7BJM,5646
50
+ codac/tests/test_SlicedTube.py,sha256=WqiQNyCDXGg7AFVyJJtR1PLESqYg_mDxYW6XFYeWmxM,21721
51
+ codac/tests/test_SlicedTube_integral.py,sha256=RHO8p5VjWOPDoP37NIku3G1HObbjAr6O9jdDHHSJpso,24173
52
+ codac/tests/test_TDomain.py,sha256=235gGo5ZUiglVRxYvtCE4HmB4KBAN2TK6XhQYDNahXw,4043
53
+ codac/tests/test_Vector.py,sha256=L5fUiVq89sf0Z2wchrROZsljio0TYIP56WOnLuIC1Xw,926
54
+ codac/tests/test_arithmetic_add.py,sha256=UDDHHZT9FoBgyi0Tz5TkrScFmI31r8fd78dbnX8BMKk,3833
55
+ codac/tests/test_arithmetic_div.py,sha256=w1GxWcm60n6HsTM2v_3BjZsvCXOuuQ1PH3XySPcWANo,2361
56
+ codac/tests/test_arithmetic_mul.py,sha256=rdn-z1TmajdAZ2xlr_TGc27A8W3fRz78b4wctwRfs8Y,8019
57
+ codac/tests/test_arithmetic_sub.py,sha256=rjow2l1lRVKsa_dQ6BswUzuIpkrBwnwGCTkHmTCNIEQ,3885
58
+ codac/tests/test_capd.py,sha256=F-KuaI4Sj4EUtmARB7Gsw46DIrIICR0bVNoYI6lizlc,450
59
+ codac/tests/test_cart_prod.py,sha256=En8wxySnh2atPBuaHTLg6HhnGW8mdKBHT-WSWO2XALQ,1690
60
+ codac/tests/test_eigen.py,sha256=nQzFn0CTrF0VvvLL3df2aASAXba8CRkr5hDwrAVdypw,451
61
+ codac/tests/test_geometry.py,sha256=_Ze80ZsdIMy_EGG_YbqUPyait5rEyU-CMd14AvOeyEA,5882
62
+ codac/tests/test_hull.py,sha256=2kGwxncoHYBqHxjvi2t-5YJ-TRDayninqslPcuRosiM,1572
63
+ codac/tests/test_ibex.py,sha256=Kuy1qeMssqWlnQ7WgluC-7E4q5jKqNjSAdAXcRZXXu4,483
64
+ codac/tests/test_inversion.py,sha256=EvCOjY0gSJlRyKWT4fV8AwDaqHIFwA8wjeSqAC2P-VY,1270
65
+ codac/tests/test_linear_ctc.py,sha256=9u3xwD8BBygli3XRBj-oo8nzD6m3L88_1vQ6Ha693Y0,2335
66
+ codac/tests/test_operators.py,sha256=XrR7IwvBgcgaWkKFjIiwSpwR7rFqltp0FlPb3SmDXcw,23859
67
+ codac/tests/test_peibos.py,sha256=sZ4ZNivu2wg7DN96F8xQBN7ihRmrVLcBZYV5oo3fxKA,2937
68
+ codac/tests/test_predefined_tubes.py,sha256=E-OaDmLrKL_dgxzg_itCFpYtc3B6lukLx-TnEcYqh1Y,5199
69
+ codac/tests/test_serialization.py,sha256=jIZfB9nql-MY_ikcRYZZDp67K2VQV6ninFWOh_Ya3WA,697
70
+ codac/tests/test_transformations.py,sha256=dnyCfHjiwl2NzgEQ7f_clUiZIkplnbGXZrlItOWohvw,1787
71
+ codac/tests/test_trunc.py,sha256=BnZwZNRjyrwHn0Dhr-OF4SC6GdFltMoveUiwWvai7J0,2340
72
+ codac/unsupported/__init__.py,sha256=1wqdDcYQf6Pw_Qs5tKxl8ti9seoIi_83sG8hFvtvuCM,32
73
+ codac-2.0.0.dev23.dist-info/METADATA,sha256=VJpEws-Q5S4TG9Z8FRaN_ywBKlPd7ojkRnWR3vzoAKc,806
74
+ codac-2.0.0.dev23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
75
+ codac-2.0.0.dev23.dist-info/top_level.txt,sha256=8FIXP4a7FrNu8RyqD7RFUsU7CTUmdd2T6j6EU-DTNYs,6
76
+ codac-2.0.0.dev23.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ codac