We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5802d commit c6f9389Copy full SHA for c6f9389
.gitignore
@@ -1,6 +1,6 @@
1
-build/*
2
-dist/*
3
-venv/*
+build/
+dist/
+venv/
4
*.egg-info
5
*.pyc
6
*.pyo
Makefile
@@ -10,6 +10,14 @@ setup:
10
build:
11
./venv/bin/python -m build
12
13
+.PHONY: install
14
+install:
15
+ pip install dist/h2ogpte_mcp_server-*.whl
16
+
17
+.PHONY: uninstall
18
+uninstall:
19
+ pip uninstall h2ogpte_mcp_server
20
21
.PHONY: upload
22
upload:
23
./venv/bin/python -m twine upload dist/*
src/h2ogpte_mcp_server/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.0.1"
+__version__ = "0.1.0"
from .server import start_server
0 commit comments