rats-apps 0.6.0.dev20250310152143__py3-none-any.whl → 0.7.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.
@@ -1,9 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rats-apps
3
- Version: 0.6.0.dev20250310152143
3
+ Version: 0.7.0
4
4
  Summary: research analysis tools for building applications
5
5
  License: MIT
6
6
  Keywords: pipelines,machine learning,research
7
+ Author: Elon Portugaly
8
+ Author-email: elonp@microsoft.com
7
9
  Requires-Python: >=3.10,<4.0
8
10
  Classifier: License :: OSI Approved :: MIT License
9
11
  Classifier: Programming Language :: Python :: 3
@@ -14,9 +16,9 @@ Classifier: Programming Language :: Python :: 3.13
14
16
  Requires-Dist: click
15
17
  Requires-Dist: colorlog
16
18
  Requires-Dist: dataclass-wizard
17
- Requires-Dist: typing_extensions
18
- Project-URL: Documentation, https://microsoft.github.io/rats/
19
- Project-URL: Repository, https://github.com/microsoft/rats/
19
+ Requires-Dist: typing-extensions
20
+ Project-URL: Documentation, https://microsoft.github.io/rats
21
+ Project-URL: Repository, https://github.com/microsoft/rats
20
22
  Description-Content-Type: text/markdown
21
23
 
22
24
  # rats-apps
@@ -32,14 +32,14 @@ rats/logs/__init__.py,sha256=sizLa6JbqekhJGKDyRZUUQvTuqiJx6yxwA5jT-tDQck,152
32
32
  rats/logs/_app.py,sha256=TF6rfQXQfaHd3AFW2anAoAGaxzU31kqJMoKkjuBtbF0,1617
33
33
  rats/logs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  rats_e2e/apps/__init__.py,sha256=c2QG818ACyS9MBXs_Evg5yYT6k-KPMQfIqF7Z77Cau0,142
35
- rats_e2e/apps/__main__.py,sha256=Ha_FTjgnX695huoXTBulqLUjKGG0aEwqXZx8tRDYKdY,351
36
- rats_e2e/apps/_example_cli.py,sha256=76bOZcYCNsRkNaRU81Wc1pIkjNaR0k7Bg1L0AiN79_A,2840
35
+ rats_e2e/apps/__main__.py,sha256=ETECGDD8glcbmx0P-WWmjQQX6gtF-5L7_DxZjNmx3X4,350
36
+ rats_e2e/apps/_example_cli.py,sha256=XzWOdnQrSp-F_FZEdm2CCm8dUJZWOSm2KFPIK0jzoi8,2840
37
37
  rats_e2e/apps/inputs/__init__.py,sha256=A9OActelrdQR-YYxUAGzogUFiOt3sDayGtQ3_6orVzc,785
38
38
  rats_e2e/apps/inputs/__main__.py,sha256=Mf-a2iQKTTgh9hMd6AeuzmU9araMIyf1AtdWkh_L07E,117
39
39
  rats_e2e/apps/inputs/_app.py,sha256=FiaLgOZc-d1ryKSwKnL5XBNGcOP1bHbxxeMJqoU_RJg,1446
40
40
  rats_e2e/apps/minimal/__init__.py,sha256=bUR6Oexx6Jsouxor0cL9emXoVha4cm3WqyhU1pgchsI,521
41
41
  rats_e2e/apps/minimal/__main__.py,sha256=Mf-a2iQKTTgh9hMd6AeuzmU9araMIyf1AtdWkh_L07E,117
42
42
  rats_e2e/apps/minimal/_app.py,sha256=CQ09LVTNRarz7Pb1wiSuNHrZ_2KGcgH8nUqy4BjxMUY,849
43
- rats_apps-0.6.0.dev20250310152143.dist-info/METADATA,sha256=qyliU36pf-1mlVwt4xDDdtLaDIKpEchKRynXbqBZVvo,811
44
- rats_apps-0.6.0.dev20250310152143.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
45
- rats_apps-0.6.0.dev20250310152143.dist-info/RECORD,,
43
+ rats_apps-0.7.0.dist-info/METADATA,sha256=zVG0xQS2tfr-fhNt7kibuDsz7vbUqASdTgFSNqJab4A,848
44
+ rats_apps-0.7.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
45
+ rats_apps-0.7.0.dist-info/RECORD,,
rats_e2e/apps/__main__.py CHANGED
@@ -6,9 +6,8 @@ Run this module with coverage.py: `coverage run --branch -m rats_e2e.runtime`.
6
6
 
7
7
  import logging
8
8
 
9
- from rats_e2e import apps as e2e
10
-
11
9
  from rats import apps
10
+ from rats_e2e import apps as e2e
12
11
 
13
12
  logger = logging.getLogger(__name__)
14
13
 
@@ -2,9 +2,9 @@ from random import randint
2
2
  from textwrap import dedent
3
3
 
4
4
  import click
5
+
5
6
  import rats_e2e.apps.inputs as inputs
6
7
  import rats_e2e.apps.minimal as minimal
7
-
8
8
  from rats import apps, cli, logs
9
9
 
10
10