robotcode-repl-server 0.100.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,300 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ share/python-wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+ MANIFEST
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .nox/
42
+ .coverage
43
+ .coverage.*
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ *.cover
48
+ *.py,cover
49
+ .hypothesis/
50
+ .pytest_cache/
51
+ cover/
52
+
53
+ # profiler
54
+ prof/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # PyBuilder
77
+ .pybuilder/
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
+
92
+ # pipenv
93
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96
+ # install all needed dependencies.
97
+ #Pipfile.lock
98
+
99
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
100
+ __pypackages__/
101
+
102
+ # Celery stuff
103
+ celerybeat-schedule
104
+ celerybeat.pid
105
+
106
+ # SageMath parsed files
107
+ *.sage.py
108
+
109
+ # Environments
110
+ .env
111
+ .venv
112
+ env/
113
+ venv/
114
+ ENV/
115
+ env.bak/
116
+ venv.bak/
117
+ .hatch/
118
+
119
+ # Spyder project settings
120
+ .spyderproject
121
+ .spyproject
122
+
123
+ # Rope project settings
124
+ .ropeproject
125
+
126
+ # mkdocs documentation
127
+ /site
128
+
129
+ # mypy
130
+ .mypy_cache/
131
+ .dmypy.json
132
+ dmypy.json
133
+
134
+ # Pyre type checker
135
+ .pyre/
136
+
137
+ # pytype static type analyzer
138
+ .pytype/
139
+
140
+ # Cython debug symbols
141
+ cython_debug/
142
+
143
+ .vscode/*
144
+ #!.vscode/settings.json
145
+ !.vscode/tasks.json
146
+ !.vscode/launch.json
147
+ !.vscode/extensions.json
148
+ *.code-workspace
149
+
150
+ # Local History for Visual Studio Code
151
+ .history/
152
+
153
+ # Logs
154
+ logs
155
+ *.log
156
+ npm-debug.log*
157
+ yarn-debug.log*
158
+ yarn-error.log*
159
+ lerna-debug.log*
160
+
161
+ # Diagnostic reports (https://nodejs.org/api/report.html)
162
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
163
+
164
+ # Runtime data
165
+ pids
166
+ *.pid
167
+ *.seed
168
+ *.pid.lock
169
+
170
+ # Directory for instrumented libs generated by jscoverage/JSCover
171
+ lib-cov
172
+
173
+ # Coverage directory used by tools like istanbul
174
+ coverage
175
+ *.lcov
176
+
177
+ # nyc test coverage
178
+ .nyc_output
179
+
180
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
181
+ .grunt
182
+
183
+ # Bower dependency directory (https://bower.io/)
184
+ bower_components
185
+
186
+ # node-waf configuration
187
+ .lock-wscript
188
+
189
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
190
+ build/Release
191
+
192
+ # Dependency directories
193
+ node_modules/
194
+ jspm_packages/
195
+
196
+ # Snowpack dependency directory (https://snowpack.dev/)
197
+ web_modules/
198
+
199
+ # TypeScript cache
200
+ *.tsbuildinfo
201
+
202
+ # Optional npm cache directory
203
+ .npm
204
+
205
+ # Optional eslint cache
206
+ .eslintcache
207
+
208
+ # Microbundle cache
209
+ .rpt2_cache/
210
+ .rts2_cache_cjs/
211
+ .rts2_cache_es/
212
+ .rts2_cache_umd/
213
+
214
+ # Optional REPL history
215
+ .node_repl_history
216
+
217
+ # Output of 'npm pack'
218
+ *.tgz
219
+
220
+ # Yarn Integrity file
221
+ .yarn-integrity
222
+
223
+ # dotenv environment variables file
224
+ .env
225
+ .env.test
226
+
227
+ # parcel-bundler cache (https://parceljs.org/)
228
+ .cache
229
+ .parcel-cache
230
+
231
+ # Next.js build output
232
+ .next
233
+ out
234
+
235
+ # Nuxt.js build / generate output
236
+ .nuxt
237
+ dist
238
+
239
+ # Gatsby files
240
+ .cache/
241
+ # Comment in the public line in if your project uses Gatsby and not Next.js
242
+ # https://nextjs.org/blog/next-9-1#public-directory-support
243
+ # public
244
+
245
+ # vuepress build output
246
+ .vuepress/dist
247
+
248
+ # Serverless directories
249
+ .serverless/
250
+
251
+ # FuseBox cache
252
+ .fusebox/
253
+
254
+ # DynamoDB Local files
255
+ .dynamodb/
256
+
257
+ # TernJS port file
258
+ .tern-port
259
+
260
+ # Stores VSCode versions used for testing VSCode extensions
261
+ .vscode-test
262
+
263
+ vscode.d.ts
264
+ vscode.proposed.d.ts
265
+
266
+ # yarn v2
267
+ .yarn/cache
268
+ .yarn/unplugged
269
+ .yarn/build-state.yml
270
+ .yarn/install-state.gz
271
+ .pnp.*
272
+
273
+ *.vsix
274
+
275
+ # playground files
276
+ playground/
277
+
278
+ # pycharm
279
+ .idea/
280
+
281
+ # test results
282
+ test-results
283
+ results.html
284
+ report.html
285
+ log.html
286
+ output.xml
287
+
288
+ # pyenv
289
+ .python-version
290
+
291
+ # robotcode
292
+ .robotcode_cache/
293
+
294
+ # ruff
295
+ .ruff_cache/
296
+
297
+ bundled/libs
298
+
299
+ # robotframework
300
+ results/
@@ -0,0 +1,73 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30
+
31
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32
+
33
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34
+
35
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
36
+
37
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
38
+
39
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+
41
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
42
+
43
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
56
+
57
+ APPENDIX: How to apply the Apache License to your work.
58
+
59
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
60
+
61
+ Copyright [yyyy] [name of copyright owner]
62
+
63
+ Licensed under the Apache License, Version 2.0 (the "License");
64
+ you may not use this file except in compliance with the License.
65
+ You may obtain a copy of the License at
66
+
67
+ http://www.apache.org/licenses/LICENSE-2.0
68
+
69
+ Unless required by applicable law or agreed to in writing, software
70
+ distributed under the License is distributed on an "AS IS" BASIS,
71
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
72
+ See the License for the specific language governing permissions and
73
+ limitations under the License.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.3
2
+ Name: robotcode-repl-server
3
+ Version: 0.100.0
4
+ Summary: RobotCode REPL Server for Robot Framework
5
+ Project-URL: Homepage, https://robotcode.io
6
+ Project-URL: Donate, https://opencollective.com/robotcode
7
+ Project-URL: Documentation, https://github.com/robotcodedev/robotcode#readme
8
+ Project-URL: Changelog, https://github.com/robotcodedev/robotcode/blob/main/CHANGELOG.md
9
+ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
10
+ Project-URL: Source, https://github.com/robotcodedev/robotcode
11
+ Author-email: Daniel Biehl <dbiehl@live.de>
12
+ License: Apache-2.0
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Framework :: Robot Framework
15
+ Classifier: Framework :: Robot Framework :: Tool
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: Implementation :: CPython
23
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
24
+ Classifier: Topic :: Utilities
25
+ Classifier: Typing :: Typed
26
+ Requires-Python: >=3.8
27
+ Requires-Dist: robotcode-jsonrpc2==0.100.0
28
+ Requires-Dist: robotcode-runner==0.100.0
29
+ Description-Content-Type: text/markdown
30
+
31
+ # robotcode-repl-server
32
+
33
+ [![PyPI - Version](https://img.shields.io/pypi/v/robotcode-repl.svg)](https://pypi.org/project/robotcode-repl-server)
34
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/robotcode-repl.svg)](https://pypi.org/project/robotcode-repl-server)
35
+ [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/master/LICENSE.txt)
36
+
37
+ -----
38
+
39
+ ## Introduction
40
+
41
+ Some classes for [RobotCode](https://robotcode.io) plugin management
42
+
43
+ ## Installation
44
+
45
+ ```console
46
+ pip install robotcode-repl-server
47
+ ```
48
+
49
+ ## License
50
+
51
+ `robotcode-repl-server` is distributed under the terms of the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license.
@@ -0,0 +1,21 @@
1
+ # robotcode-repl-server
2
+
3
+ [![PyPI - Version](https://img.shields.io/pypi/v/robotcode-repl.svg)](https://pypi.org/project/robotcode-repl-server)
4
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/robotcode-repl.svg)](https://pypi.org/project/robotcode-repl-server)
5
+ [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/master/LICENSE.txt)
6
+
7
+ -----
8
+
9
+ ## Introduction
10
+
11
+ Some classes for [RobotCode](https://robotcode.io) plugin management
12
+
13
+ ## Installation
14
+
15
+ ```console
16
+ pip install robotcode-repl-server
17
+ ```
18
+
19
+ ## License
20
+
21
+ `robotcode-repl-server` is distributed under the terms of the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license.
@@ -0,0 +1,60 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "robotcode-repl-server"
7
+ description = 'RobotCode REPL Server for Robot Framework'
8
+ readme = { "file" = "README.md", "content-type" = "text/markdown" }
9
+ requires-python = ">=3.8"
10
+ license = {text = "Apache-2.0"}
11
+ keywords = []
12
+ authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
13
+ classifiers = [
14
+ "Development Status :: 5 - Production/Stable",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3.8",
17
+ "Programming Language :: Python :: 3.9",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: Implementation :: CPython",
21
+ "Programming Language :: Python :: Implementation :: PyPy",
22
+ "Operating System :: OS Independent",
23
+ "Topic :: Utilities",
24
+ "Typing :: Typed",
25
+ "Framework :: Robot Framework",
26
+ "Framework :: Robot Framework :: Tool",
27
+ ]
28
+ dynamic = ["version"]
29
+ dependencies = [
30
+ "robotcode-jsonrpc2==0.100.0",
31
+ "robotcode-runner==0.100.0"
32
+ ]
33
+
34
+ [project.entry-points.robotcode]
35
+ repl_server = "robotcode.repl_server.hooks"
36
+
37
+ [project.urls]
38
+ Homepage = "https://robotcode.io"
39
+ Donate = "https://opencollective.com/robotcode"
40
+ Documentation = "https://github.com/robotcodedev/robotcode#readme"
41
+ Changelog = "https://github.com/robotcodedev/robotcode/blob/main/CHANGELOG.md"
42
+ Issues = "https://github.com/robotcodedev/robotcode/issues"
43
+ Source = "https://github.com/robotcodedev/robotcode"
44
+
45
+ [tool.hatch.version]
46
+ path = "src/robotcode/repl_server/__version__.py"
47
+
48
+ [tool.hatch.build]
49
+ dev-mode-dirs = ["src"]
50
+
51
+ [tool.hatch.build.targets.wheel]
52
+ only-include = ["src/robotcode"]
53
+ sources = ["src"]
54
+
55
+ [tool.hatch.build.targets.sdist]
56
+ only-include = ["src"]
57
+
58
+ [tool.hatch.envs.build]
59
+ detached = true
60
+ python = "38"
@@ -0,0 +1 @@
1
+ __version__ = "0.100.0"