Skip to content

Commit c6f9389

Browse files
committed
add install commands
1 parent 5a5802d commit c6f9389

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
build/*
2-
dist/*
3-
venv/*
1+
build/
2+
dist/
3+
venv/
44
*.egg-info
55
*.pyc
66
*.pyo

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ setup:
1010
build:
1111
./venv/bin/python -m build
1212

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+
1321
.PHONY: upload
1422
upload:
1523
./venv/bin/python -m twine upload dist/*

src/h2ogpte_mcp_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.1.0"
22

33
from .server import start_server
44

0 commit comments

Comments
 (0)