runem 0.0.31__py3-none-any.whl → 0.1.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.
@@ -0,0 +1,155 @@
1
+ Metadata-Version: 2.1
2
+ Name: runem
3
+ Version: 0.1.0
4
+ Summary: Awesome runem created by lursight
5
+ Home-page: https://github.com/lursight/runem/
6
+ Author: lursight
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: packaging
10
+ Requires-Dist: PyYAML
11
+ Requires-Dist: rich
12
+ Requires-Dist: typing-extensions
13
+ Provides-Extra: tests
14
+ Requires-Dist: black==24.10.0; extra == "tests"
15
+ Requires-Dist: coverage==7.5; extra == "tests"
16
+ Requires-Dist: docformatter==1.7.5; extra == "tests"
17
+ Requires-Dist: flake8-bugbear==24.2.6; extra == "tests"
18
+ Requires-Dist: flake8==7.0.0; extra == "tests"
19
+ Requires-Dist: gitchangelog==3.0.4; extra == "tests"
20
+ Requires-Dist: isort==5.13.2; extra == "tests"
21
+ Requires-Dist: mkdocs==1.5.3; extra == "tests"
22
+ Requires-Dist: mypy==1.9.0; extra == "tests"
23
+ Requires-Dist: pydocstyle==6.3.0; extra == "tests"
24
+ Requires-Dist: pylint==3.1.0; extra == "tests"
25
+ Requires-Dist: pylama==8.4.1; extra == "tests"
26
+ Requires-Dist: pytest-cov==6.0.0; extra == "tests"
27
+ Requires-Dist: pytest-profiling==1.7.0; extra == "tests"
28
+ Requires-Dist: pytest-xdist==3.6.1; extra == "tests"
29
+ Requires-Dist: pytest==8.3.3; extra == "tests"
30
+ Requires-Dist: setuptools; extra == "tests"
31
+ Requires-Dist: termplotlib==0.3.9; extra == "tests"
32
+ Requires-Dist: tox; extra == "tests"
33
+ Requires-Dist: types-PyYAML==6.0.12.20240311; extra == "tests"
34
+ Requires-Dist: requests-mock==1.11.0; extra == "tests"
35
+ Requires-Dist: types-setuptools; extra == "tests"
36
+
37
+ <!-- [![codecov](https://codecov.io/gh/lursight/runem/branch/main/graph/badge.svg?token=run-test_token_here)](https://codecov.io/gh/lursight/runem) -->
38
+ [![CI](https://github.com/lursight/runem/actions/workflows/main.yml/badge.svg)](https://github.com/lursight/runem/actions/workflows/main.yml)
39
+ [![DOCS](https://lursight.github.io/runem/docs/VIEW-DOCS-31c553.svg)](https://lursight.github.io/runem/)
40
+
41
+ # Run'em: Accelerate Your Development Workflow
42
+ **Boost Efficiency and Save Time**
43
+ Runem is a flexible, multi-process tool designed to speed up your everyday tasks by running them in parallel. Whether you're testing, linting, or deploying, runem helps you work smarter and faster.
44
+
45
+ ## Why Choose Run'em?
46
+ - **Streamlined Task Management**: Configure tasks with ease using declarative .runem.yml files.
47
+ - **Multiprocess Execution**: Run multiple tasks simultaneously, minimizing wall-clock time.
48
+ - **Optimized for Monorepos**: Supports multiple projects and task types, with easy filtering and configuration.
49
+ - **Detailed Reporting**: Get insights into task execution time and efficiency gains.
50
+
51
+ ## Contents
52
+ - [Run'em: Accelerate Your Development Workflow](#runem-accelerate-your-development-workflow)
53
+ - [Why Choose Run'em?](#why-choose-runem)
54
+ - [Contents](#contents)
55
+ - [Features At A Glance:](#features-at-a-glance)
56
+ - [Using Run'em](#using-runem)
57
+ - [Installation](#installation)
58
+ - [Quick-start](#quick-start)
59
+ - [Basic quick-start](#basic-quick-start)
60
+ - [A more complete quick-start](#a-more-complete-quick-start)
61
+ - [Basic Use](#basic-use)
62
+ - [Advanced Use](#advanced-use)
63
+ - [Advanced configuration options](#advanced-configuration-options)
64
+ - [Custom reports](#custom-reports)
65
+ - [Help and job discovery](#help-and-job-discovery)
66
+ - [Troubleshooting](#troubleshooting)
67
+ - [Contributing to and supporting runem](#contributing-to-and-supporting-runem)
68
+ - [Development](#development)
69
+ - [Sponsor](#sponsor)
70
+ - [About runem](#about-runem)
71
+
72
+
73
+ # Features At A Glance:
74
+ - **Tagging**: Easily run specific job groups (e.g., lint, test, python).
75
+ - **Phases**: Organize tasks by phase (e.g., edit, test, deploy).
76
+ - **Configurable Options**: Customize how jobs are executed using simple options.
77
+ - **Declarative**: Jobs are define using simple YAML in [.runem.yml](https://lursight.github.io/runem/docs/configuration.html) .
78
+
79
+ # Using Run'em
80
+
81
+ ## Installation
82
+
83
+ ```bash
84
+ pip install runem
85
+ ```
86
+
87
+ ## Quick-start
88
+
89
+ ## Basic quick-start
90
+ Create the following `.runem.yml` file at the root of your project:
91
+
92
+ ```yml
93
+ - job:
94
+ command: echo "hello world!"
95
+ ```
96
+
97
+ Then anywhere in your project run `runem` to see how and when that task is run, and how long it took:
98
+ ```bash
99
+ runem
100
+ ```
101
+
102
+ To see the actual log output you will need to use `--verbose` as `runem` hides anything that isn't important. Only failures and reports are considered important.
103
+ ```bash
104
+ # Or, to see "hello world!", use --verbose
105
+ runem --verbose # add --verbose to see the actual output
106
+ ```
107
+
108
+ To see how you can control your job use `--help`:
109
+ ```bash
110
+ runem --help
111
+ ```
112
+
113
+ ### A more complete quick-start
114
+
115
+ See [quick-start docs](https://lursight.github.io/runem/docs/quick_start.html) for more quick-start tips.
116
+
117
+ ## Basic Use
118
+
119
+ See [docs on basic use and use-cases](https://lursight.github.io/runem/docs/basic_use.html) for a comprehensive introduction.
120
+
121
+ ## Advanced Use
122
+
123
+ ### Advanced configuration options
124
+ See [configuration docs](https://lursight.github.io/runem/docs/configuration.html) for advanced configuration and use.
125
+
126
+ ### Custom reports
127
+ See [reporting docs](https://lursight.github.io/runem/docs/reports.html) for more information on how reporting works.
128
+
129
+
130
+ # Help and job discovery
131
+
132
+ `--help` is designed to help your team discover what jobs and tasks they can automated. Read more at
133
+ [help and discovery docs](https://lursight.github.io/runem/docs/help_and_job_discovery.html).
134
+
135
+ # Troubleshooting
136
+
137
+ See [troubleshooting and known issues docs](https://lursight.github.io/runem/docs/troubleshooting_known_issues.html).
138
+
139
+ ---
140
+ # Contributing to and supporting runem
141
+
142
+ Awesome runem created by lursight
143
+
144
+ ## Development
145
+
146
+ Read the [CONTRIBUTING.md](CONTRIBUTING.md) file.
147
+
148
+ ## Sponsor
149
+
150
+ [❤️ Sponsor this project](https://github.com/sponsors/lursight/)
151
+
152
+ # About runem
153
+ The runem mission is to improve developer velocity at
154
+ [Lursight Ltd.](https://lursight.com), read more about the runem
155
+ [mission](https://lursight.github.io/runem/docs/mission.html).
@@ -1,33 +1,33 @@
1
- runem/VERSION,sha256=ygwViIed-jHcHrW47R-z5Om5lbqAJc3R4PPjymEoZCc,7
1
+ runem/VERSION,sha256=6d2FB_S_DG9CRY5BrqgzrQvT9hJycjNe7pv01YVB7Wc,6
2
2
  runem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  runem/__main__.py,sha256=dsOiVZegpfK9JOs5n7UmbX5iwwbj7iFkEbLoVeEgAn4,136
4
4
  runem/base.py,sha256=EZfR7FIlwEdU9Vfe47Wk2DOO8GQqpKxxLNKp6YHueZ4,316
5
5
  runem/blocking_print.py,sha256=S9dtgAeuTzc2-ht-vk9Wl6l-0PwS2tYbHDHDQQitrlA,841
6
6
  runem/cli.py,sha256=wEt_Jnumhl8SiOdKdSJzLkJpWv6n3_Odhi_HeIixr1k,134
7
- runem/command_line.py,sha256=k8yOlwfWliiJX3m33tkVzuGVQ2i-tuAgOENMWmP2u7Y,10999
7
+ runem/command_line.py,sha256=mJbs7uUtAxSnbMxO3C08feOkVusK36x_LIQaeJHivzA,13700
8
8
  runem/config.py,sha256=y-e6j84FDiLSKKw9ShDzRlnS5t2e81MW8fKSKtxtJtg,5935
9
9
  runem/config_metadata.py,sha256=Vy7dx8F-Z5jEp16OP2y6vHHoGkyhoCaTG4KIVkMWR7M,3232
10
10
  runem/config_parse.py,sha256=6mCamzWu7HTotmqFJmLZg9FFE6qe1-rpmo8_v5ESPW8,13401
11
- runem/files.py,sha256=KEL4cdHRJrdK6I_jdy2wGZv5abPvgBPS1aAlmxKxPgc,3377
12
- runem/hook_manager.py,sha256=9T-4omyjBPZ6ua_37UWpT1dwNMbb4SKwvxYcN6fVxLE,4163
11
+ runem/files.py,sha256=QZqPS7OA98lEwlhJNtnaSWlEeTlI8_yn-zjf3QAPoJk,4384
12
+ runem/hook_manager.py,sha256=rhQ4bEWSbn7cfLFtIxJwtaiDe7v1ykvUzmpk9BpZFlM,4241
13
13
  runem/informative_dict.py,sha256=U7p9z78UwOT4TAfng1iDXCEyeYz6C-XZlx9Z1pWNVrI,1548
14
14
  runem/job.py,sha256=QVXvzz67fJk__-h0womFQsB80-w41E3XRcHpxmRnv3o,2912
15
- runem/job_execute.py,sha256=xmH-O0qnsS2P_s3NCpXmla_kjsGgGCy0QdFH4pbY8iI,4000
15
+ runem/job_execute.py,sha256=M3hV83SKQMl2kOzVghwbUEYa9B2cQNJR7ixOgxNuWKA,4146
16
16
  runem/job_filter.py,sha256=fuxyKCHpTB4HlT_QagBk-IhhmWMlOr9Y9s5voP4yzYU,5370
17
17
  runem/job_runner_simple_command.py,sha256=jxBukPm9bTLNhfQCkqNG5VepvB2ysmWAZwhBPHoTA6o,1091
18
- runem/job_wrapper.py,sha256=wwPeWkMqhORl_Po6V-ofYZ-v9Ho0cFMprLRpY-30DyQ,964
18
+ runem/job_wrapper.py,sha256=H57b52Apcg3q3LyMxus6vNrlv615J4CXiWaQrv8vOgY,936
19
19
  runem/job_wrapper_python.py,sha256=m5xbWQxkDRtawjCcgxctzouv_Pny6bKiG2OPVE1hlgo,4226
20
20
  runem/log.py,sha256=dIrocigvIJs1ZGkAzTogXkAK-0ZW3q5FkjpDgLdeW-E,630
21
21
  runem/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  runem/report.py,sha256=IBCtMgGwnvVbEEqDWbYBGUZmTIzBLnpXqYSK5uu3vgk,8987
23
23
  runem/run_command.py,sha256=Egl_j4bJ9mwi2JEFCsl0W6WH2IRgIdpMN7qdj8voClQ,6386
24
- runem/runem.py,sha256=RIKF-l_ziGs0oKEueVkfygmnc_xiIdQo2qNDpiA-2Zs,13013
24
+ runem/runem.py,sha256=IINSRvp0Yytzh-VNY98hPGmxrjyOndSeH0D2eEuyYZA,14303
25
25
  runem/runem_version.py,sha256=MbETwZO2Tb1Y3hX_OYZjKepEMKA1cjNvr-7Cqhz6e3s,271
26
- runem/types.py,sha256=TLagRdB6-4gKqETAeJzo7-HFwBqQWGTwHcw2slSKN0U,7445
26
+ runem/types.py,sha256=-RHnskpWEtvqNlrHx3mHrkx6ujEdkCxcU7hu3_lHrJU,10671
27
27
  runem/utils.py,sha256=3N_kel9LsriiMq7kOjT14XhfxUOgz4hdDg97wlLKm3U,221
28
- runem-0.0.31.dist-info/LICENSE,sha256=awOCsWJ58m_2kBQwBUGWejVqZm6wuRtCL2hi9rfa0X4,1211
29
- runem-0.0.31.dist-info/METADATA,sha256=PtDmfylhA038JOFt9wKtxrzYjAXhnRGukpxj-BSfxsQ,29789
30
- runem-0.0.31.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
31
- runem-0.0.31.dist-info/entry_points.txt,sha256=nu0g_vBeuPihYtimbtlNusxWovylMppvJ8UxdJlJfvM,46
32
- runem-0.0.31.dist-info/top_level.txt,sha256=gK6iqh9OfHDDpErioCC9ul_zx2Q5zWTALtcuGU7Vil4,6
33
- runem-0.0.31.dist-info/RECORD,,
28
+ runem-0.1.0.dist-info/LICENSE,sha256=awOCsWJ58m_2kBQwBUGWejVqZm6wuRtCL2hi9rfa0X4,1211
29
+ runem-0.1.0.dist-info/METADATA,sha256=PsBSJX4jHev1NegY-LOjmemYGFFAOR8OUY1-nf2mybE,5842
30
+ runem-0.1.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
31
+ runem-0.1.0.dist-info/entry_points.txt,sha256=nu0g_vBeuPihYtimbtlNusxWovylMppvJ8UxdJlJfvM,46
32
+ runem-0.1.0.dist-info/top_level.txt,sha256=gK6iqh9OfHDDpErioCC9ul_zx2Q5zWTALtcuGU7Vil4,6
33
+ runem-0.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5