sage-agent 0.1.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.
Files changed (50) hide show
  1. sage_agent-0.1.0/.copier-answers.yml +14 -0
  2. sage_agent-0.1.0/.gitignore +121 -0
  3. sage_agent-0.1.0/.idea/.gitignore +8 -0
  4. sage_agent-0.1.0/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  5. sage_agent-0.1.0/.idea/jupyter-extension.iml +8 -0
  6. sage_agent-0.1.0/.idea/misc.xml +7 -0
  7. sage_agent-0.1.0/.idea/modules.xml +8 -0
  8. sage_agent-0.1.0/.idea/prettier.xml +8 -0
  9. sage_agent-0.1.0/.idea/vcs.xml +6 -0
  10. sage_agent-0.1.0/.prettierignore +6 -0
  11. sage_agent-0.1.0/.yarnrc.yml +1 -0
  12. sage_agent-0.1.0/CHANGELOG.md +5 -0
  13. sage_agent-0.1.0/LICENSE +29 -0
  14. sage_agent-0.1.0/PKG-INFO +132 -0
  15. sage_agent-0.1.0/README.md +77 -0
  16. sage_agent-0.1.0/RELEASE.md +80 -0
  17. sage_agent-0.1.0/install.json +5 -0
  18. sage_agent-0.1.0/package.json +190 -0
  19. sage_agent-0.1.0/pyproject.toml +77 -0
  20. sage_agent-0.1.0/sage-agent/__init__.py +16 -0
  21. sage_agent-0.1.0/sage-agent/_version.py +4 -0
  22. sage_agent-0.1.0/sage-agent/labextension/package.json +195 -0
  23. sage_agent-0.1.0/sage-agent/labextension/schemas/sage-agent/package.json.orig +190 -0
  24. sage_agent-0.1.0/sage-agent/labextension/schemas/sage-agent/plugin.json +27 -0
  25. sage_agent-0.1.0/sage-agent/labextension/static/509.cecc49bf1d25f42ce857.js +1 -0
  26. sage_agent-0.1.0/sage-agent/labextension/static/728.3bb17ab9c996c15fd97d.js +1 -0
  27. sage_agent-0.1.0/sage-agent/labextension/static/remoteEntry.c9f240dd55365bd5bb31.js +1 -0
  28. sage_agent-0.1.0/sage-agent/labextension/static/style.js +4 -0
  29. sage_agent-0.1.0/sage-agent/labextension/static/third-party-licenses.json +16 -0
  30. sage_agent-0.1.0/sage_agent/_version.py +4 -0
  31. sage_agent-0.1.0/sage_agent/labextension/build_log.json +720 -0
  32. sage_agent-0.1.0/sage_agent/labextension/package.json +199 -0
  33. sage_agent-0.1.0/sage_agent/labextension/schemas/sage-agent/package.json.orig +194 -0
  34. sage_agent-0.1.0/sage_agent/labextension/schemas/sage-agent/plugin.json +27 -0
  35. sage_agent-0.1.0/sage_agent/labextension/static/lib_index_js.60045b1953d1e402f712.js +282 -0
  36. sage_agent-0.1.0/sage_agent/labextension/static/lib_index_js.60045b1953d1e402f712.js.map +1 -0
  37. sage_agent-0.1.0/sage_agent/labextension/static/remoteEntry.d666e36b332f954c1c1c.js +553 -0
  38. sage_agent-0.1.0/sage_agent/labextension/static/remoteEntry.d666e36b332f954c1c1c.js.map +1 -0
  39. sage_agent-0.1.0/sage_agent/labextension/static/style.js +4 -0
  40. sage_agent-0.1.0/sage_agent/labextension/static/style_index_js.b5a1d71d19b15fcbd30b.js +580 -0
  41. sage_agent-0.1.0/sage_agent/labextension/static/style_index_js.b5a1d71d19b15fcbd30b.js.map +1 -0
  42. sage_agent-0.1.0/sage_ai/__init__.py +16 -0
  43. sage_agent-0.1.0/schema/plugin.json +27 -0
  44. sage_agent-0.1.0/setup.py +1 -0
  45. sage_agent-0.1.0/src/index.ts +321 -0
  46. sage_agent-0.1.0/style/base.css +96 -0
  47. sage_agent-0.1.0/style/index.css +1 -0
  48. sage_agent-0.1.0/style/index.js +1 -0
  49. sage_agent-0.1.0/tsconfig.json +24 -0
  50. sage_agent-0.1.0/yarn.lock +4945 -0
@@ -0,0 +1,14 @@
1
+ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2
+ _commit: v4.3.8
3
+ _src_path: https://github.com/jupyterlab/extension-template
4
+ author_email: danielschaffield@gmail.com
5
+ author_name: Daniel Schaffield
6
+ has_binder: false
7
+ has_settings: true
8
+ kind: frontend
9
+ labextension_name: sage-agent
10
+ project_short_description: Sage AI - Your AI Data Partner
11
+ python_name: sage-agent
12
+ repository: https://github.com/AlpineX-Labs/jupyter-sage-agent
13
+ test: false
14
+
@@ -0,0 +1,121 @@
1
+ *.bundle.*
2
+ lib/
3
+ node_modules/
4
+ *.log
5
+ .eslintcache
6
+ .stylelintcache
7
+ *.egg-info/
8
+ .ipynb_checkpoints
9
+ *.tsbuildinfo
10
+ sage-agent/labextension
11
+ # Version file is handled by hatchling
12
+ sage-agent/_version.py
13
+
14
+ # Created by https://www.gitignore.io/api/python
15
+ # Edit at https://www.gitignore.io/?templates=python
16
+
17
+ ### Python ###
18
+ # Byte-compiled / optimized / DLL files
19
+ __pycache__/
20
+ *.py[cod]
21
+ *$py.class
22
+
23
+ # C extensions
24
+ *.so
25
+
26
+ # Distribution / packaging
27
+ .Python
28
+ build/
29
+ develop-eggs/
30
+ dist/
31
+ downloads/
32
+ eggs/
33
+ .eggs/
34
+ lib/
35
+ lib64/
36
+ parts/
37
+ sdist/
38
+ var/
39
+ wheels/
40
+ pip-wheel-metadata/
41
+ share/python-wheels/
42
+ .installed.cfg
43
+ *.egg
44
+ MANIFEST
45
+
46
+ # PyInstaller
47
+ # Usually these files are written by a python script from a template
48
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
49
+ *.manifest
50
+ *.spec
51
+
52
+ # Installer logs
53
+ pip-log.txt
54
+ pip-delete-this-directory.txt
55
+
56
+ # Unit test / coverage reports
57
+ htmlcov/
58
+ .tox/
59
+ .nox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ coverage/
65
+ coverage.xml
66
+ *.cover
67
+ .hypothesis/
68
+ .pytest_cache/
69
+
70
+ # Translations
71
+ *.mo
72
+ *.pot
73
+
74
+ # Scrapy stuff:
75
+ .scrapy
76
+
77
+ # Sphinx documentation
78
+ docs/_build/
79
+
80
+ # PyBuilder
81
+ target/
82
+
83
+ # pyenv
84
+ .python-version
85
+
86
+ # celery beat schedule file
87
+ celerybeat-schedule
88
+
89
+ # SageMath parsed files
90
+ *.sage.py
91
+
92
+ # Spyder project settings
93
+ .spyderproject
94
+ .spyproject
95
+
96
+ # Rope project settings
97
+ .ropeproject
98
+
99
+ # Mr Developer
100
+ .mr.developer.cfg
101
+ .project
102
+ .pydevproject
103
+
104
+ # mkdocs documentation
105
+ /site
106
+
107
+ # mypy
108
+ .mypy_cache/
109
+ .dmypy.json
110
+ dmypy.json
111
+
112
+ # Pyre type checker
113
+ .pyre/
114
+
115
+ # End of https://www.gitignore.io/api/python
116
+
117
+ # OSX files
118
+ .DS_Store
119
+
120
+ # Yarn cache
121
+ .yarn/
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="jdk" jdkName="jupyterlab-ext" jdkType="Python SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ </module>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Black">
4
+ <option name="sdkName" value="C:\ProgramData\anaconda3" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="jupyterlab-ext" project-jdk-type="Python SDK" />
7
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/jupyter-extension.iml" filepath="$PROJECT_DIR$/.idea/jupyter-extension.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="PrettierConfiguration">
4
+ <option name="myConfigurationMode" value="MANUAL" />
5
+ <option name="myRunOnSave" value="true" />
6
+ <option name="myRunOnReformat" value="true" />
7
+ </component>
8
+ </project>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,6 @@
1
+ node_modules
2
+ **/node_modules
3
+ **/lib
4
+ **/package.json
5
+ !/package.json
6
+ sage-agent
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ <!-- <START NEW CHANGELOG ENTRY> -->
4
+
5
+ <!-- <END NEW CHANGELOG ENTRY> -->
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Daniel Schaffield
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,132 @@
1
+ Metadata-Version: 2.4
2
+ Name: sage-agent
3
+ Version: 0.1.0
4
+ Summary: Sage AI - Your AI Data Partner
5
+ Project-URL: Homepage, https://github.com/AlpineX-Labs/jupyter-sage-agent
6
+ Project-URL: Bug Tracker, https://github.com/AlpineX-Labs/jupyter-sage-agent/issues
7
+ Project-URL: Repository, https://github.com/AlpineX-Labs/jupyter-sage-agent.git
8
+ Author-email: Daniel Schaffield <danielschaffield@gmail.com>
9
+ License: BSD 3-Clause License
10
+
11
+ Copyright (c) 2025, Daniel Schaffield
12
+ All rights reserved.
13
+
14
+ Redistribution and use in source and binary forms, with or without
15
+ modification, are permitted provided that the following conditions are met:
16
+
17
+ 1. Redistributions of source code must retain the above copyright notice, this
18
+ list of conditions and the following disclaimer.
19
+
20
+ 2. Redistributions in binary form must reproduce the above copyright notice,
21
+ this list of conditions and the following disclaimer in the documentation
22
+ and/or other materials provided with the distribution.
23
+
24
+ 3. Neither the name of the copyright holder nor the names of its
25
+ contributors may be used to endorse or promote products derived from
26
+ this software without specific prior written permission.
27
+
28
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
32
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
34
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
35
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
36
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
+ License-File: LICENSE
39
+ Keywords: jupyter,jupyterlab,jupyterlab-extension
40
+ Classifier: Framework :: Jupyter
41
+ Classifier: Framework :: Jupyter :: JupyterLab
42
+ Classifier: Framework :: Jupyter :: JupyterLab :: 4
43
+ Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
44
+ Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
45
+ Classifier: License :: OSI Approved :: BSD License
46
+ Classifier: Programming Language :: Python
47
+ Classifier: Programming Language :: Python :: 3
48
+ Classifier: Programming Language :: Python :: 3.9
49
+ Classifier: Programming Language :: Python :: 3.10
50
+ Classifier: Programming Language :: Python :: 3.11
51
+ Classifier: Programming Language :: Python :: 3.12
52
+ Classifier: Programming Language :: Python :: 3.13
53
+ Requires-Python: >=3.9
54
+ Description-Content-Type: text/markdown
55
+
56
+ # sage-agent
57
+
58
+ [![Github Actions Status](https://github.com/AlpineX-Labs/jupyter-sage-agent/workflows/Build/badge.svg)](https://github.com/AlpineX-Labs/jupyter-sage-agent/actions/workflows/build.yml)
59
+
60
+ Sage AI - Your AI Data Partner
61
+
62
+ ## Requirements
63
+
64
+ - JupyterLab >= 4.0.0
65
+
66
+ ## Install
67
+
68
+ To install the extension, execute:
69
+
70
+ ```bash
71
+ pip install sage-agent
72
+ ```
73
+
74
+ ## Uninstall
75
+
76
+ To remove the extension, execute:
77
+
78
+ ```bash
79
+ pip uninstall sage-agent
80
+ ```
81
+
82
+ ## Contributing
83
+
84
+ ### Development install
85
+
86
+ Note: You will need NodeJS to build the extension package.
87
+
88
+ The `jlpm` command is JupyterLab's pinned version of
89
+ [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
90
+ `yarn` or `npm` in lieu of `jlpm` below.
91
+
92
+ ```bash
93
+ # Clone the repo to your local environment
94
+ # Change directory to the sage-agent directory
95
+ # Install package in development mode
96
+ pip install -e "."
97
+ # Link your development version of the extension with JupyterLab
98
+ jupyter labextension develop . --overwrite
99
+ # Rebuild extension Typescript source after making changes
100
+ jlpm build
101
+ ```
102
+
103
+ You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
104
+
105
+ ```bash
106
+ # Watch the source directory in one terminal, automatically rebuilding when needed
107
+ jlpm watch
108
+ # Run JupyterLab in another terminal
109
+ jupyter lab
110
+ ```
111
+
112
+ With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
113
+
114
+ By default, the `jlpm build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
115
+
116
+ ```bash
117
+ jupyter lab build --minimize=False
118
+ ```
119
+
120
+ ### Development uninstall
121
+
122
+ ```bash
123
+ pip uninstall sage-agent
124
+ ```
125
+
126
+ In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
127
+ command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
128
+ folder is located. Then you can remove the symlink named `sage-agent` within that folder.
129
+
130
+ ### Packaging the extension
131
+
132
+ See [RELEASE](RELEASE.md)
@@ -0,0 +1,77 @@
1
+ # sage-agent
2
+
3
+ [![Github Actions Status](https://github.com/AlpineX-Labs/jupyter-sage-agent/workflows/Build/badge.svg)](https://github.com/AlpineX-Labs/jupyter-sage-agent/actions/workflows/build.yml)
4
+
5
+ Sage AI - Your AI Data Partner
6
+
7
+ ## Requirements
8
+
9
+ - JupyterLab >= 4.0.0
10
+
11
+ ## Install
12
+
13
+ To install the extension, execute:
14
+
15
+ ```bash
16
+ pip install sage-agent
17
+ ```
18
+
19
+ ## Uninstall
20
+
21
+ To remove the extension, execute:
22
+
23
+ ```bash
24
+ pip uninstall sage-agent
25
+ ```
26
+
27
+ ## Contributing
28
+
29
+ ### Development install
30
+
31
+ Note: You will need NodeJS to build the extension package.
32
+
33
+ The `jlpm` command is JupyterLab's pinned version of
34
+ [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
35
+ `yarn` or `npm` in lieu of `jlpm` below.
36
+
37
+ ```bash
38
+ # Clone the repo to your local environment
39
+ # Change directory to the sage-agent directory
40
+ # Install package in development mode
41
+ pip install -e "."
42
+ # Link your development version of the extension with JupyterLab
43
+ jupyter labextension develop . --overwrite
44
+ # Rebuild extension Typescript source after making changes
45
+ jlpm build
46
+ ```
47
+
48
+ You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
49
+
50
+ ```bash
51
+ # Watch the source directory in one terminal, automatically rebuilding when needed
52
+ jlpm watch
53
+ # Run JupyterLab in another terminal
54
+ jupyter lab
55
+ ```
56
+
57
+ With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
58
+
59
+ By default, the `jlpm build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
60
+
61
+ ```bash
62
+ jupyter lab build --minimize=False
63
+ ```
64
+
65
+ ### Development uninstall
66
+
67
+ ```bash
68
+ pip uninstall sage-agent
69
+ ```
70
+
71
+ In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
72
+ command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
73
+ folder is located. Then you can remove the symlink named `sage-agent` within that folder.
74
+
75
+ ### Packaging the extension
76
+
77
+ See [RELEASE](RELEASE.md)
@@ -0,0 +1,80 @@
1
+ # Making a new release of sage-agent
2
+
3
+ The extension can be published to `PyPI` and `npm` manually or using the [Jupyter Releaser](https://github.com/jupyter-server/jupyter_releaser).
4
+
5
+ ## Manual release
6
+
7
+ ### Python package
8
+
9
+ This extension can be distributed as Python packages. All of the Python
10
+ packaging instructions are in the `pyproject.toml` file to wrap your extension in a
11
+ Python package. Before generating a package, you first need to install some tools:
12
+
13
+ ```bash
14
+ pip install build twine hatch
15
+ ```
16
+
17
+ Bump the version using `hatch`. By default this will create a tag.
18
+ See the docs on [hatch-nodejs-version](https://github.com/agoose77/hatch-nodejs-version#semver) for details.
19
+
20
+ ```bash
21
+ hatch version <new-version>
22
+ ```
23
+
24
+ Make sure to clean up all the development files before building the package:
25
+
26
+ ```bash
27
+ jlpm clean:all
28
+ ```
29
+
30
+ You could also clean up the local git repository:
31
+
32
+ ```bash
33
+ git clean -dfX
34
+ ```
35
+
36
+ To create a Python source package (`.tar.gz`) and the binary package (`.whl`) in the `dist/` directory, do:
37
+
38
+ ```bash
39
+ python -m build
40
+ ```
41
+
42
+ > `python setup.py sdist bdist_wheel` is deprecated and will not work for this package.
43
+
44
+ Then to upload the package to PyPI, do:
45
+
46
+ ```bash
47
+ twine upload dist/*
48
+ ```
49
+
50
+ ### NPM package
51
+
52
+ To publish the frontend part of the extension as a NPM package, do:
53
+
54
+ ```bash
55
+ npm login
56
+ npm publish --access public
57
+ ```
58
+
59
+ ## Automated releases with the Jupyter Releaser
60
+
61
+ The extension repository should already be compatible with the Jupyter Releaser. But
62
+ the GitHub repository and the package managers need to be properly set up. Please
63
+ follow the instructions of the Jupyter Releaser [checklist](https://jupyter-releaser.readthedocs.io/en/latest/how_to_guides/convert_repo_from_repo.html).
64
+
65
+ Here is a summary of the steps to cut a new release:
66
+
67
+ - Go to the Actions panel
68
+ - Run the "Step 1: Prep Release" workflow
69
+ - Check the draft changelog
70
+ - Run the "Step 2: Publish Release" workflow
71
+
72
+ > [!NOTE]
73
+ > Check out the [workflow documentation](https://jupyter-releaser.readthedocs.io/en/latest/get_started/making_release_from_repo.html)
74
+ > for more information.
75
+
76
+ ## Publishing to `conda-forge`
77
+
78
+ If the package is not on conda forge yet, check the documentation to learn how to add it: https://conda-forge.org/docs/maintainer/adding_pkgs.html
79
+
80
+ Otherwise a bot should pick up the new version publish to PyPI, and open a new PR on the feedstock repository automatically.
@@ -0,0 +1,5 @@
1
+ {
2
+ "packageManager": "python",
3
+ "packageName": "sage-agent",
4
+ "uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package sage-agent"
5
+ }