ominfra 0.0.0.dev19__tar.gz → 0.0.0.dev21__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 (54) hide show
  1. {ominfra-0.0.0.dev19/ominfra.egg-info → ominfra-0.0.0.dev21}/PKG-INFO +2 -2
  2. ominfra-0.0.0.dev21/README.rst +10 -0
  3. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/_executor.py +6 -4
  4. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/_main.py +2 -2
  5. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/pyremote/_runcommands.py +6 -4
  6. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21/ominfra.egg-info}/PKG-INFO +2 -2
  7. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra.egg-info/SOURCES.txt +2 -2
  8. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra.egg-info/requires.txt +1 -1
  9. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/pyproject.toml +2 -2
  10. ominfra-0.0.0.dev19/README.rst +0 -5
  11. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/LICENSE +0 -0
  12. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/MANIFEST.in +0 -0
  13. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/__about__.py +0 -0
  14. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/__init__.py +0 -0
  15. {ominfra-0.0.0.dev19/ominfra/bootstrap → ominfra-0.0.0.dev21/ominfra/clouds}/__init__.py +0 -0
  16. {ominfra-0.0.0.dev19/ominfra/clouds → ominfra-0.0.0.dev21/ominfra/clouds/aws}/__init__.py +0 -0
  17. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/clouds/aws/auth.py +0 -0
  18. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/cmds.py +0 -0
  19. {ominfra-0.0.0.dev19/ominfra/clouds/aws → ominfra-0.0.0.dev21/ominfra/deploy}/__init__.py +0 -0
  20. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/configs.py +0 -0
  21. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/__init__.py +0 -0
  22. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/base.py +0 -0
  23. {ominfra-0.0.0.dev19/ominfra/deploy → ominfra-0.0.0.dev21/ominfra/deploy/executor/concerns}/__init__.py +0 -0
  24. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/dirs.py +0 -0
  25. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/nginx.py +0 -0
  26. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/repo.py +0 -0
  27. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/supervisor.py +0 -0
  28. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/systemd.py +0 -0
  29. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/user.py +0 -0
  30. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/concerns/venv.py +0 -0
  31. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/executor/main.py +0 -0
  32. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/__init__.py +0 -0
  33. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/base.py +0 -0
  34. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/configs.py +0 -0
  35. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/deploy.py +0 -0
  36. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/main.py +0 -0
  37. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/nginx.py +0 -0
  38. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/repo.py +0 -0
  39. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/runtime.py +0 -0
  40. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/site.py +0 -0
  41. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/supervisor.py +0 -0
  42. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/poly/venv.py +0 -0
  43. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/deploy/remote.py +0 -0
  44. {ominfra-0.0.0.dev19/ominfra/deploy/executor/concerns → ominfra-0.0.0.dev21/ominfra/manage}/__init__.py +0 -0
  45. /ominfra-0.0.0.dev19/ominfra/bootstrap/bootstrap.py → /ominfra-0.0.0.dev21/ominfra/manage/manage.py +0 -0
  46. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/pyremote/__init__.py +0 -0
  47. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/pyremote/bootstrap.py +0 -0
  48. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/pyremote/runcommands.py +0 -0
  49. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/ssh.py +0 -0
  50. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/tools/__init__.py +0 -0
  51. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra/tools/listresources.py +0 -0
  52. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra.egg-info/dependency_links.txt +0 -0
  53. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/ominfra.egg-info/top_level.txt +0 -0
  54. {ominfra-0.0.0.dev19 → ominfra-0.0.0.dev21}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ominfra
3
- Version: 0.0.0.dev19
3
+ Version: 0.0.0.dev21
4
4
  Summary: ominfra
5
5
  Author: wrmsr
6
6
  License: BSD-3-Clause
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
12
12
  Classifier: Operating System :: POSIX
13
13
  Requires-Python: ~=3.12
14
14
  License-File: LICENSE
15
- Requires-Dist: omlish==0.0.0.dev19
15
+ Requires-Dist: omlish==0.0.0.dev21
16
16
  Provides-Extra: all
17
17
  Requires-Dist: paramiko~=3.4; extra == "all"
18
18
  Requires-Dist: asyncssh~=2.17; python_version < "3.13" and extra == "all"
@@ -0,0 +1,10 @@
1
+ It's like my previous python monorepo-ey thing `omnibus
2
+ <https://github.com/wrmsr/omnibus/tree/wrmsr_exp_split>`_... ish.
3
+
4
+ Core packages begin with ``om``, scratch app is in ``app``, temp / dump code is in ``x``.
5
+
6
+ Core packages installable from git via:
7
+
8
+ .. code-block::
9
+
10
+ pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
@@ -292,8 +292,8 @@ class JsonLogFormatter(logging.Formatter):
292
292
  STANDARD_LOG_FORMAT_PARTS = [
293
293
  ('asctime', '%(asctime)-15s'),
294
294
  ('process', 'pid=%(process)-6s'),
295
- ('thread', 'tid=%(thread)-10x'),
296
- ('levelname', '%(levelname)-8s'),
295
+ ('thread', 'tid=%(thread)x'),
296
+ ('levelname', '%(levelname)s'),
297
297
  ('name', '%(name)s'),
298
298
  ('separator', '::'),
299
299
  ('message', '%(message)s'),
@@ -559,8 +559,10 @@ _OBJ_MARSHALER_GENERIC_MAPPING_TYPES: ta.Dict[ta.Any, type] = {
559
559
 
560
560
  _OBJ_MARSHALER_GENERIC_ITERABLE_TYPES: ta.Dict[ta.Any, type] = {
561
561
  **{t: t for t in (list, tuple, set, frozenset)},
562
- **{t: frozenset for t in (collections.abc.Set, collections.abc.MutableSet)},
563
- **{t: tuple for t in (collections.abc.Sequence, collections.abc.MutableSequence)},
562
+ collections.abc.Set: frozenset,
563
+ collections.abc.MutableSet: set,
564
+ collections.abc.Sequence: tuple,
565
+ collections.abc.MutableSequence: list,
564
566
  }
565
567
 
566
568
 
@@ -355,8 +355,8 @@ class JsonLogFormatter(logging.Formatter):
355
355
  STANDARD_LOG_FORMAT_PARTS = [
356
356
  ('asctime', '%(asctime)-15s'),
357
357
  ('process', 'pid=%(process)-6s'),
358
- ('thread', 'tid=%(thread)-10x'),
359
- ('levelname', '%(levelname)-8s'),
358
+ ('thread', 'tid=%(thread)x'),
359
+ ('levelname', '%(levelname)s'),
360
360
  ('name', '%(name)s'),
361
361
  ('separator', '::'),
362
362
  ('message', '%(message)s'),
@@ -375,8 +375,8 @@ class JsonLogFormatter(logging.Formatter):
375
375
  STANDARD_LOG_FORMAT_PARTS = [
376
376
  ('asctime', '%(asctime)-15s'),
377
377
  ('process', 'pid=%(process)-6s'),
378
- ('thread', 'tid=%(thread)-10x'),
379
- ('levelname', '%(levelname)-8s'),
378
+ ('thread', 'tid=%(thread)x'),
379
+ ('levelname', '%(levelname)s'),
380
380
  ('name', '%(name)s'),
381
381
  ('separator', '::'),
382
382
  ('message', '%(message)s'),
@@ -642,8 +642,10 @@ _OBJ_MARSHALER_GENERIC_MAPPING_TYPES: ta.Dict[ta.Any, type] = {
642
642
 
643
643
  _OBJ_MARSHALER_GENERIC_ITERABLE_TYPES: ta.Dict[ta.Any, type] = {
644
644
  **{t: t for t in (list, tuple, set, frozenset)},
645
- **{t: frozenset for t in (collections.abc.Set, collections.abc.MutableSet)},
646
- **{t: tuple for t in (collections.abc.Sequence, collections.abc.MutableSequence)},
645
+ collections.abc.Set: frozenset,
646
+ collections.abc.MutableSet: set,
647
+ collections.abc.Sequence: tuple,
648
+ collections.abc.MutableSequence: list,
647
649
  }
648
650
 
649
651
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ominfra
3
- Version: 0.0.0.dev19
3
+ Version: 0.0.0.dev21
4
4
  Summary: ominfra
5
5
  Author: wrmsr
6
6
  License: BSD-3-Clause
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
12
12
  Classifier: Operating System :: POSIX
13
13
  Requires-Python: ~=3.12
14
14
  License-File: LICENSE
15
- Requires-Dist: omlish==0.0.0.dev19
15
+ Requires-Dist: omlish==0.0.0.dev21
16
16
  Provides-Extra: all
17
17
  Requires-Dist: paramiko~=3.4; extra == "all"
18
18
  Requires-Dist: asyncssh~=2.17; python_version < "3.13" and extra == "all"
@@ -11,8 +11,6 @@ ominfra.egg-info/SOURCES.txt
11
11
  ominfra.egg-info/dependency_links.txt
12
12
  ominfra.egg-info/requires.txt
13
13
  ominfra.egg-info/top_level.txt
14
- ominfra/bootstrap/__init__.py
15
- ominfra/bootstrap/bootstrap.py
16
14
  ominfra/clouds/__init__.py
17
15
  ominfra/clouds/aws/__init__.py
18
16
  ominfra/clouds/aws/auth.py
@@ -43,6 +41,8 @@ ominfra/deploy/poly/runtime.py
43
41
  ominfra/deploy/poly/site.py
44
42
  ominfra/deploy/poly/supervisor.py
45
43
  ominfra/deploy/poly/venv.py
44
+ ominfra/manage/__init__.py
45
+ ominfra/manage/manage.py
46
46
  ominfra/pyremote/__init__.py
47
47
  ominfra/pyremote/_runcommands.py
48
48
  ominfra/pyremote/bootstrap.py
@@ -1,4 +1,4 @@
1
- omlish==0.0.0.dev19
1
+ omlish==0.0.0.dev21
2
2
 
3
3
  [all]
4
4
  paramiko~=3.4
@@ -12,7 +12,7 @@ authors = [
12
12
  urls = {source = 'https://github.com/wrmsr/omlish'}
13
13
  license = {text = 'BSD-3-Clause'}
14
14
  requires-python = '~=3.12'
15
- version = '0.0.0.dev19'
15
+ version = '0.0.0.dev21'
16
16
  classifiers = [
17
17
  'License :: OSI Approved :: BSD License',
18
18
  'Development Status :: 2 - Pre-Alpha',
@@ -22,7 +22,7 @@ classifiers = [
22
22
  ]
23
23
  description = 'ominfra'
24
24
  dependencies = [
25
- 'omlish == 0.0.0.dev19',
25
+ 'omlish == 0.0.0.dev21',
26
26
  ]
27
27
 
28
28
  [project.optional-dependencies]
@@ -1,5 +0,0 @@
1
- *omlish*
2
-
3
- Packages installable from git via:
4
- ::
5
- pip install 'git+https://github.com/wrmsr/omlish@master#subdirectory=.pkg/<pkg>'
File without changes
File without changes
File without changes