mcp-stata 1.0.2__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.
Potentially problematic release.
This version of mcp-stata might be problematic. Click here for more details.
- mcp_stata-1.0.2/.coverage +0 -0
- mcp_stata-1.0.2/.github/workflows/publish.yml +37 -0
- mcp_stata-1.0.2/.gitignore +7 -0
- mcp_stata-1.0.2/LICENSE +661 -0
- mcp_stata-1.0.2/PKG-INFO +240 -0
- mcp_stata-1.0.2/README.md +207 -0
- mcp_stata-1.0.2/pyproject.toml +70 -0
- mcp_stata-1.0.2/pytest.ini +4 -0
- mcp_stata-1.0.2/src/mcp_stata/__init__.py +4 -0
- mcp_stata-1.0.2/src/mcp_stata/discovery.py +124 -0
- mcp_stata-1.0.2/src/mcp_stata/models.py +57 -0
- mcp_stata-1.0.2/src/mcp_stata/server.py +202 -0
- mcp_stata-1.0.2/src/mcp_stata/smcl/smcl2html.py +80 -0
- mcp_stata-1.0.2/src/mcp_stata/stata_client.py +524 -0
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
pypi-publish:
|
|
9
|
+
name: Upload release to PyPI
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
environment:
|
|
12
|
+
name: mcp-stata
|
|
13
|
+
url: https://pypi.org/p/mcp-stata
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write # required for OIDC trusted publishing
|
|
16
|
+
contents: read
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Checkout
|
|
20
|
+
uses: actions/checkout@v4
|
|
21
|
+
|
|
22
|
+
- name: Set up Python
|
|
23
|
+
uses: actions/setup-python@v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: "3.x"
|
|
26
|
+
|
|
27
|
+
- name: Install build dependencies
|
|
28
|
+
run: |
|
|
29
|
+
python -m pip install --upgrade pip
|
|
30
|
+
pip install build
|
|
31
|
+
|
|
32
|
+
- name: Build package
|
|
33
|
+
run: python -m build
|
|
34
|
+
|
|
35
|
+
- name: Publish package distributions to PyPI
|
|
36
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
37
|
+
|