robotcode-repl 0.95.2__tar.gz → 0.97.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: robotcode-repl
3
- Version: 0.95.2
3
+ Version: 0.97.0
4
4
  Summary: RobotCode REPL for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -10,7 +10,6 @@ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
10
10
  Project-URL: Source, https://github.com/robotcodedev/robotcode
11
11
  Author-email: Daniel Biehl <dbiehl@live.de>
12
12
  License: Apache-2.0
13
- License-File: LICENSE.txt
14
13
  Classifier: Development Status :: 5 - Production/Stable
15
14
  Classifier: Framework :: Robot Framework
16
15
  Classifier: Framework :: Robot Framework :: Tool
@@ -25,8 +24,8 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
25
24
  Classifier: Topic :: Utilities
26
25
  Classifier: Typing :: Typed
27
26
  Requires-Python: >=3.8
28
- Requires-Dist: robotcode-jsonrpc2==0.95.2
29
- Requires-Dist: robotcode-runner==0.95.2
27
+ Requires-Dist: robotcode-jsonrpc2==0.97.0
28
+ Requires-Dist: robotcode-runner==0.97.0
30
29
  Description-Content-Type: text/markdown
31
30
 
32
31
  # robotcode-repl
@@ -27,8 +27,8 @@ classifiers = [
27
27
  ]
28
28
  dynamic = ["version"]
29
29
  dependencies = [
30
- "robotcode-jsonrpc2==0.95.2",
31
- "robotcode-runner==0.95.2"
30
+ "robotcode-jsonrpc2==0.97.0",
31
+ "robotcode-runner==0.97.0"
32
32
  ]
33
33
 
34
34
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "0.97.0"
@@ -117,7 +117,7 @@ def run_repl(
117
117
  @click.option(
118
118
  "-V",
119
119
  "--variablefile",
120
- metavar="path",
120
+ metavar="PATH",
121
121
  type=str,
122
122
  multiple=True,
123
123
  help="Python or YAML file file to read variables from. see `robot --variablefile` option.",
@@ -125,10 +125,10 @@ def run_repl(
125
125
  @click.option(
126
126
  "-P",
127
127
  "--pythonpath",
128
- metavar="path",
128
+ metavar="PATH",
129
129
  type=str,
130
130
  multiple=True,
131
- help="Additional locations (directories, ZIPs, JARs) where to search test libraries"
131
+ help="Additional locations where to search test libraries"
132
132
  " and other extensions when they are imported. see `robot --pythonpath` option.",
133
133
  )
134
134
  @click.option(
@@ -1 +0,0 @@
1
- __version__ = "0.95.2"