arkitekt-next 0.7.11__py3-none-any.whl → 0.7.12__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 arkitekt-next might be problematic. Click here for more details.

@@ -10,7 +10,7 @@ from click import Context
10
10
 
11
11
  @click.group()
12
12
  @click.pass_context
13
- def port(ctx: Context) -> None:
13
+ def kabinet(ctx: Context) -> None:
14
14
  """Deploy the arkitekt_next app with Port
15
15
 
16
16
  The port deployer is an arkitekt_next plugin service, which allows you to deploy your arkitekt_next app to
@@ -23,9 +23,9 @@ def port(ctx: Context) -> None:
23
23
  pass
24
24
 
25
25
 
26
- port.add_command(build, "build")
27
- port.add_command(init, "init")
28
- port.add_command(validate, "validate")
29
- port.add_command(publish, "publish")
30
- port.add_command(stage, "stage")
31
- port.add_command(wizard, "wizard")
26
+ kabinet.add_command(build, "build")
27
+ kabinet.add_command(init, "init")
28
+ kabinet.add_command(validate, "validate")
29
+ kabinet.add_command(publish, "publish")
30
+ kabinet.add_command(stage, "stage")
31
+ kabinet.add_command(wizard, "wizard")
arkitekt_next/cli/main.py CHANGED
@@ -17,7 +17,7 @@ from arkitekt_next.cli.texts import *
17
17
  from arkitekt_next.cli.commands.run.main import run
18
18
  from arkitekt_next.cli.commands.gen.main import gen
19
19
  from arkitekt_next.cli.commands.server.main import server
20
- from arkitekt_next.cli.commands.port.main import port
20
+ from arkitekt_next.cli.commands.kabinet.main import kabinet
21
21
  from arkitekt_next.cli.commands.init.main import init
22
22
  from arkitekt_next.cli.commands.manifest.main import manifest
23
23
  from arkitekt_next.cli.commands.inspect.main import inspect
@@ -73,7 +73,7 @@ def cli(ctx):
73
73
  cli.add_command(init, "init")
74
74
  cli.add_command(run, "run")
75
75
  cli.add_command(gen, "gen")
76
- cli.add_command(port, "port")
76
+ cli.add_command(kabinet, "kabinet")
77
77
  cli.add_command(manifest, "manifest")
78
78
  cli.add_command(inspect, "inspect")
79
79
  cli.add_command(server, "server")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: arkitekt-next
3
- Version: 0.7.11
3
+ Version: 0.7.12
4
4
  Summary: client for the arkitekt_next platform
5
5
  License: MIT
6
6
  Author: jhnnsrs
@@ -17,12 +17,13 @@ Provides-Extra: all
17
17
  Provides-Extra: cli
18
18
  Requires-Dist: dokker (>=0.1.21)
19
19
  Requires-Dist: fakts (>=0.5.0)
20
- Requires-Dist: fluss-next (>=0.1.61) ; extra == "all"
20
+ Requires-Dist: fluss-next (>=0.1.63) ; extra == "all"
21
21
  Requires-Dist: herre (>=0.4.3)
22
- Requires-Dist: kabinet (>=0.1.19) ; extra == "all"
22
+ Requires-Dist: kabinet (>=0.1.2) ; extra == "all"
23
23
  Requires-Dist: koil (>=0.3.6)
24
- Requires-Dist: mikro-next (>=0.1.6) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
25
- Requires-Dist: reaktion-next (>=0.1.50) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
24
+ Requires-Dist: mikro-next (>=0.1.9) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
25
+ Requires-Dist: reaktion-next (>=0.1.53) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
26
+ Requires-Dist: rekuest-next (>=0.2.4) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
26
27
  Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all"
27
28
  Requires-Dist: semver (>=3.0.1) ; extra == "cli" or extra == "all"
28
29
  Requires-Dist: turms (>=0.5.0) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "cli" or extra == "all")
@@ -33,21 +33,21 @@ arkitekt_next/cli/commands/inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
33
33
  arkitekt_next/cli/commands/inspect/definitions.py,sha256=IZO4g-lsTBTeOk3E5ybPtmBueagDpeCa7oOITrRv-M8,1335
34
34
  arkitekt_next/cli/commands/inspect/main.py,sha256=hYAhhotYacT1SpQropE0w4u10u4eUcjA3dxk6aZ6QB0,545
35
35
  arkitekt_next/cli/commands/inspect/variables.py,sha256=LonDlbS2qH1v-jD6RfEhTv-mxmgeBMKqD3oO2iDJRjE,2698
36
+ arkitekt_next/cli/commands/kabinet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ arkitekt_next/cli/commands/kabinet/build.py,sha256=K8-3Hu8OVsooMlNWPdSGRFEtNFsszmIKutH92TfdEDk,7078
38
+ arkitekt_next/cli/commands/kabinet/init.py,sha256=NNEb5SITLNM1TBED0moyBhE-JGkkr0cvNh33A4OGnfc,2525
39
+ arkitekt_next/cli/commands/kabinet/main.py,sha256=U5EWekRTsMZZ34abWFfwilhzrd-zZtpZbl8RsLN_bC8,1008
40
+ arkitekt_next/cli/commands/kabinet/publish.py,sha256=zbjnoMliowje1nEuKFolFX5pZA2D_DzLjXlSxBbD88k,3596
41
+ arkitekt_next/cli/commands/kabinet/stage.py,sha256=eK_FgqTbGvaphmOH6jnllYWCkv0pI3qJaEnfWHoBvYs,1985
42
+ arkitekt_next/cli/commands/kabinet/utils.py,sha256=x27qR7ksCuvASHkEAEaDuUAeuzjrZpzIp1W4lOF5f_0,1644
43
+ arkitekt_next/cli/commands/kabinet/validate.py,sha256=MSSuwjdJKDtXB6rkjRmG-PPK6cVwTcOuCRpgPDQ0uVg,2490
44
+ arkitekt_next/cli/commands/kabinet/wizard.py,sha256=vbW-EAitypCl1HRjsgHRuwc18hQgOzAU8C__6SWuAzQ,9148
36
45
  arkitekt_next/cli/commands/manifest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
46
  arkitekt_next/cli/commands/manifest/inspect.py,sha256=eqYYt3M8XiYCJONarikVVa8uK7Hh7DfB2b3fOOQ3dlk,1370
38
47
  arkitekt_next/cli/commands/manifest/main.py,sha256=mOjsZSQeYorm38u4mg3IHsK_h8fTVprYYtvKpbG93V8,662
39
48
  arkitekt_next/cli/commands/manifest/scopes.py,sha256=sw0HRy8GliEcmx3Sh6cPRpBkf1vxAGJwLgIO63ZB_t4,4879
40
49
  arkitekt_next/cli/commands/manifest/version.py,sha256=tA-a35QlcobUwoPsgGLQL9_D0E-HZvawsfO4l7DoX-Y,4832
41
50
  arkitekt_next/cli/commands/manifest/wizard.py,sha256=a8rIHgtmKuw-L4E3eO3kXwXv0TM2pN4Lq75y2QKXmcA,2498
42
- arkitekt_next/cli/commands/port/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- arkitekt_next/cli/commands/port/build.py,sha256=K8-3Hu8OVsooMlNWPdSGRFEtNFsszmIKutH92TfdEDk,7078
44
- arkitekt_next/cli/commands/port/init.py,sha256=NNEb5SITLNM1TBED0moyBhE-JGkkr0cvNh33A4OGnfc,2525
45
- arkitekt_next/cli/commands/port/main.py,sha256=mPjnW9UT90SNb5opv7Ladpt3NFvN-AJ8csS0AVuLfPM,987
46
- arkitekt_next/cli/commands/port/publish.py,sha256=zbjnoMliowje1nEuKFolFX5pZA2D_DzLjXlSxBbD88k,3596
47
- arkitekt_next/cli/commands/port/stage.py,sha256=eK_FgqTbGvaphmOH6jnllYWCkv0pI3qJaEnfWHoBvYs,1985
48
- arkitekt_next/cli/commands/port/utils.py,sha256=x27qR7ksCuvASHkEAEaDuUAeuzjrZpzIp1W4lOF5f_0,1644
49
- arkitekt_next/cli/commands/port/validate.py,sha256=MSSuwjdJKDtXB6rkjRmG-PPK6cVwTcOuCRpgPDQ0uVg,2490
50
- arkitekt_next/cli/commands/port/wizard.py,sha256=vbW-EAitypCl1HRjsgHRuwc18hQgOzAU8C__6SWuAzQ,9148
51
51
  arkitekt_next/cli/commands/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  arkitekt_next/cli/commands/run/dev.py,sha256=KRcAHM-MCsy2-Wv2UIONCzdezEF214rEVbRPWec33FE,9991
53
53
  arkitekt_next/cli/commands/run/main.py,sha256=0bNO3DqwbZ4ddMsDWbCGmlPD6Cs3Jlg4yh2-zilsEbY,552
@@ -69,7 +69,7 @@ arkitekt_next/cli/dockerfiles/vanilla.dockerfile,sha256=YtZqjFUUjp3-NSeB3OowElPJ
69
69
  arkitekt_next/cli/errors.py,sha256=zLTjaCbun6qM2nTldjyZd-DvykqKn5A3Gn80uYdx7Vc,93
70
70
  arkitekt_next/cli/inspect.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
71
71
  arkitekt_next/cli/io.py,sha256=Jp8F8vYPIcAow7IAh_tgWFrsM9KRaElipAH7wj26lIo,6899
72
- arkitekt_next/cli/main.py,sha256=AR75ck7wTAbuNMdpfoBwJeFjqKE1BDfaxbdHeQG3SaI,2317
72
+ arkitekt_next/cli/main.py,sha256=A_JgqAKmmmXNK-yxuuQ9bG6HX2I6pV2ccImCQ5fjfZQ,2329
73
73
  arkitekt_next/cli/options.py,sha256=TeHFBuoTdhI908DY2D7gw5pDFkuyCXUFgEr01TZn42I,3625
74
74
  arkitekt_next/cli/schemas/fluss.schema.graphql,sha256=MqrSpOxtWO9kWFCoUn9ySBPhIH3XozFiqrQl2zjEbiQ,35803
75
75
  arkitekt_next/cli/schemas/gucker.schema.graphql,sha256=r_KL-MoFRCGUobbtcBLCnpmFcali2A12TguynqQgmN4,152947
@@ -112,8 +112,8 @@ arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
112
112
  arkitekt_next/service_registry.py,sha256=Aq5bgu4UHRl1P6E2JOQ2gMCwFI8pQfASWte0BvtKE3g,3365
113
113
  arkitekt_next/tqdm.py,sha256=DlrxPluHao7TvW-Cqgt0UokRS-fM2_ZNiWiddqvCqCc,1488
114
114
  arkitekt_next/utils.py,sha256=WA3AtqQFcz2h-yOadAsQkkr0qKJmKcGMi2aclxaVI_o,1278
115
- arkitekt_next-0.7.11.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
116
- arkitekt_next-0.7.11.dist-info/METADATA,sha256=2Sr_RBI8YtV3axmwGAQsXvxRuy4RqMbpoAHsgd9oo0g,5218
117
- arkitekt_next-0.7.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
118
- arkitekt_next-0.7.11.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
119
- arkitekt_next-0.7.11.dist-info/RECORD,,
115
+ arkitekt_next-0.7.12.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
116
+ arkitekt_next-0.7.12.dist-info/METADATA,sha256=_mEKEaUNaCrAKHXXpjsvhx0A6d6IIVVId9d_PbvGI68,5349
117
+ arkitekt_next-0.7.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
118
+ arkitekt_next-0.7.12.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
119
+ arkitekt_next-0.7.12.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes