cypherglot 0.0.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.
- cypherglot-0.0.0/.github/workflows/build-docs.yml +50 -0
- cypherglot-0.0.0/.github/workflows/deploy-docs.yml +125 -0
- cypherglot-0.0.0/.github/workflows/generated-cypher.yml +24 -0
- cypherglot-0.0.0/.github/workflows/publish-pypi.yml +75 -0
- cypherglot-0.0.0/.github/workflows/test.yml +59 -0
- cypherglot-0.0.0/.gitignore +207 -0
- cypherglot-0.0.0/LICENSE +201 -0
- cypherglot-0.0.0/PKG-INFO +280 -0
- cypherglot-0.0.0/README.md +52 -0
- cypherglot-0.0.0/docs/development/documentation.md +13 -0
- cypherglot-0.0.0/docs/development/release.md +34 -0
- cypherglot-0.0.0/docs/getting-started/installation.md +17 -0
- cypherglot-0.0.0/docs/getting-started/quickstart.md +11 -0
- cypherglot-0.0.0/docs/guide/compiler-contract.md +41 -0
- cypherglot-0.0.0/docs/guide/roadmap.md +13 -0
- cypherglot-0.0.0/docs/index.md +39 -0
- cypherglot-0.0.0/mkdocs.yml +86 -0
- cypherglot-0.0.0/pyproject.toml +55 -0
- cypherglot-0.0.0/scripts/dev/regenerate_cypher_frontend_docker.sh +10 -0
- cypherglot-0.0.0/src/cypherglot/__init__.py +15 -0
- cypherglot-0.0.0/tests/test_import.py +15 -0
- cypherglot-0.0.0/things-to-do.md +148 -0
- cypherglot-0.0.0/uv.lock +676 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: Build Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags-ignore:
|
|
6
|
+
- 'v*'
|
|
7
|
+
paths:
|
|
8
|
+
- 'docs/**'
|
|
9
|
+
- 'mkdocs.yml'
|
|
10
|
+
- 'README.md'
|
|
11
|
+
- '.github/workflows/build-docs.yml'
|
|
12
|
+
pull_request:
|
|
13
|
+
paths:
|
|
14
|
+
- 'docs/**'
|
|
15
|
+
- 'mkdocs.yml'
|
|
16
|
+
- 'README.md'
|
|
17
|
+
- '.github/workflows/build-docs.yml'
|
|
18
|
+
workflow_call:
|
|
19
|
+
workflow_dispatch:
|
|
20
|
+
|
|
21
|
+
permissions:
|
|
22
|
+
contents: read
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
build-docs:
|
|
26
|
+
name: Build MkDocs site
|
|
27
|
+
runs-on: ubuntu-24.04
|
|
28
|
+
|
|
29
|
+
steps:
|
|
30
|
+
- name: Checkout repository
|
|
31
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
32
|
+
|
|
33
|
+
- name: Set up Python
|
|
34
|
+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
|
35
|
+
with:
|
|
36
|
+
python-version: '3.12'
|
|
37
|
+
|
|
38
|
+
- name: Set up uv
|
|
39
|
+
uses: astral-sh/setup-uv@v6
|
|
40
|
+
|
|
41
|
+
- name: Install docs dependencies
|
|
42
|
+
run: |
|
|
43
|
+
uv sync --group docs
|
|
44
|
+
|
|
45
|
+
- name: Build docs
|
|
46
|
+
env:
|
|
47
|
+
MIKE_VERSION: dev
|
|
48
|
+
MIKE_VERSION_TAG: main
|
|
49
|
+
run: |
|
|
50
|
+
uv run mkdocs build --strict
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
name: Deploy MkDocs to GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
inputs:
|
|
9
|
+
version:
|
|
10
|
+
description: 'Version to deploy (for example: 0.1.0 or v0.1.0)'
|
|
11
|
+
required: true
|
|
12
|
+
set_latest:
|
|
13
|
+
description: 'Set as latest version?'
|
|
14
|
+
required: true
|
|
15
|
+
type: boolean
|
|
16
|
+
default: true
|
|
17
|
+
|
|
18
|
+
permissions:
|
|
19
|
+
contents: read
|
|
20
|
+
|
|
21
|
+
concurrency:
|
|
22
|
+
group: pages
|
|
23
|
+
cancel-in-progress: false
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
deploy:
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
env:
|
|
29
|
+
DOCS_REPO: humemai/humemai-docs
|
|
30
|
+
DOCS_BRANCH: main
|
|
31
|
+
|
|
32
|
+
steps:
|
|
33
|
+
- name: Checkout repository
|
|
34
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
35
|
+
with:
|
|
36
|
+
fetch-depth: 0
|
|
37
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
38
|
+
persist-credentials: false
|
|
39
|
+
|
|
40
|
+
- name: Set up Python
|
|
41
|
+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
|
42
|
+
with:
|
|
43
|
+
python-version: '3.12'
|
|
44
|
+
|
|
45
|
+
- name: Set up uv
|
|
46
|
+
uses: astral-sh/setup-uv@v6
|
|
47
|
+
|
|
48
|
+
- name: Install docs dependencies
|
|
49
|
+
run: |
|
|
50
|
+
uv sync --group docs
|
|
51
|
+
|
|
52
|
+
- name: Validate docs token
|
|
53
|
+
run: |
|
|
54
|
+
if [ -z "${{ secrets.HUMEMAI_DOCS_TOKEN }}" ]; then
|
|
55
|
+
echo "HUMEMAI_DOCS_TOKEN is missing"
|
|
56
|
+
exit 1
|
|
57
|
+
fi
|
|
58
|
+
|
|
59
|
+
- name: Extract version from tag or input
|
|
60
|
+
id: version
|
|
61
|
+
run: |
|
|
62
|
+
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
|
|
63
|
+
RAW_VERSION="${{ github.event.inputs.version }}"
|
|
64
|
+
SET_LATEST="${{ github.event.inputs.set_latest }}"
|
|
65
|
+
else
|
|
66
|
+
RAW_VERSION="${{ github.ref_name }}"
|
|
67
|
+
SET_LATEST="true"
|
|
68
|
+
fi
|
|
69
|
+
|
|
70
|
+
VERSION="${RAW_VERSION#v}"
|
|
71
|
+
VERSION_TAG="v$VERSION"
|
|
72
|
+
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
73
|
+
echo "version_tag=$VERSION_TAG" >> "$GITHUB_OUTPUT"
|
|
74
|
+
echo "set_latest=$SET_LATEST" >> "$GITHUB_OUTPUT"
|
|
75
|
+
echo "Deploying documentation version: $VERSION"
|
|
76
|
+
echo "Using source tag ref: $VERSION_TAG"
|
|
77
|
+
|
|
78
|
+
- name: Checkout humemai-docs
|
|
79
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
80
|
+
with:
|
|
81
|
+
repository: ${{ env.DOCS_REPO }}
|
|
82
|
+
ref: ${{ env.DOCS_BRANCH }}
|
|
83
|
+
token: ${{ secrets.HUMEMAI_DOCS_TOKEN }}
|
|
84
|
+
path: humemai-docs
|
|
85
|
+
|
|
86
|
+
- name: Configure Git (humemai-docs)
|
|
87
|
+
run: |
|
|
88
|
+
git -C humemai-docs config user.name "github-actions[bot]"
|
|
89
|
+
git -C humemai-docs config user.email "github-actions[bot]@users.noreply.github.com"
|
|
90
|
+
|
|
91
|
+
- name: Deploy with mike (set as latest)
|
|
92
|
+
if: steps.version.outputs.set_latest == 'true'
|
|
93
|
+
working-directory: humemai-docs
|
|
94
|
+
env:
|
|
95
|
+
MIKE_VERSION: ${{ steps.version.outputs.version }}
|
|
96
|
+
MIKE_VERSION_TAG: ${{ steps.version.outputs.version_tag }}
|
|
97
|
+
run: |
|
|
98
|
+
uv run --project .. mike deploy --update-aliases \
|
|
99
|
+
--deploy-prefix cypherglot \
|
|
100
|
+
--branch ${{ env.DOCS_BRANCH }} \
|
|
101
|
+
--push \
|
|
102
|
+
--config-file ../mkdocs.yml \
|
|
103
|
+
${{ steps.version.outputs.version }} latest \
|
|
104
|
+
--title "${{ steps.version.outputs.version }}"
|
|
105
|
+
uv run --project .. mike set-default \
|
|
106
|
+
--deploy-prefix cypherglot \
|
|
107
|
+
--branch ${{ env.DOCS_BRANCH }} \
|
|
108
|
+
--push \
|
|
109
|
+
--config-file ../mkdocs.yml \
|
|
110
|
+
latest
|
|
111
|
+
|
|
112
|
+
- name: Deploy with mike (not latest)
|
|
113
|
+
if: steps.version.outputs.set_latest != 'true'
|
|
114
|
+
working-directory: humemai-docs
|
|
115
|
+
env:
|
|
116
|
+
MIKE_VERSION: ${{ steps.version.outputs.version }}
|
|
117
|
+
MIKE_VERSION_TAG: ${{ steps.version.outputs.version_tag }}
|
|
118
|
+
run: |
|
|
119
|
+
uv run --project .. mike deploy \
|
|
120
|
+
--deploy-prefix cypherglot \
|
|
121
|
+
--branch ${{ env.DOCS_BRANCH }} \
|
|
122
|
+
--push \
|
|
123
|
+
--config-file ../mkdocs.yml \
|
|
124
|
+
${{ steps.version.outputs.version }} \
|
|
125
|
+
--title "${{ steps.version.outputs.version }}"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Generated Cypher Artifacts
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
workflow_call:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
generated-cypher-check:
|
|
15
|
+
name: Generated Cypher Artifacts
|
|
16
|
+
runs-on: ubuntu-24.04
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: Checkout repository
|
|
20
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
21
|
+
|
|
22
|
+
- name: Verify checked-in generated Cypher artifacts
|
|
23
|
+
run: |
|
|
24
|
+
bash scripts/dev/regenerate_cypher_frontend_docker.sh --check
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
name: Publish Python package to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
tests:
|
|
14
|
+
name: Run unit tests
|
|
15
|
+
uses: ./.github/workflows/test.yml
|
|
16
|
+
|
|
17
|
+
build:
|
|
18
|
+
name: Build package
|
|
19
|
+
runs-on: ubuntu-24.04
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout repository
|
|
22
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
23
|
+
with:
|
|
24
|
+
fetch-depth: 0
|
|
25
|
+
|
|
26
|
+
- name: Set up Python
|
|
27
|
+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
|
28
|
+
with:
|
|
29
|
+
python-version: "3.12"
|
|
30
|
+
|
|
31
|
+
- name: Set up uv
|
|
32
|
+
uses: astral-sh/setup-uv@v6
|
|
33
|
+
|
|
34
|
+
- name: Install project and docs dependencies
|
|
35
|
+
run: |
|
|
36
|
+
uv sync --group docs
|
|
37
|
+
|
|
38
|
+
- name: Build docs
|
|
39
|
+
run: |
|
|
40
|
+
uv run mkdocs build --strict
|
|
41
|
+
|
|
42
|
+
- name: Build distributions
|
|
43
|
+
run: |
|
|
44
|
+
uv run --with build python -m build
|
|
45
|
+
|
|
46
|
+
- name: Check package metadata
|
|
47
|
+
run: |
|
|
48
|
+
uv run --with twine python -m twine check dist/*
|
|
49
|
+
|
|
50
|
+
- name: Verify wheel installation
|
|
51
|
+
run: |
|
|
52
|
+
uv run --isolated --with ./dist/*.whl python -c "import cypherglot; print(cypherglot.__version__)"
|
|
53
|
+
|
|
54
|
+
- name: Upload distributions
|
|
55
|
+
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
|
56
|
+
with:
|
|
57
|
+
name: python-package-distributions
|
|
58
|
+
path: dist/
|
|
59
|
+
|
|
60
|
+
publish:
|
|
61
|
+
name: Publish package to PyPI
|
|
62
|
+
needs: [tests, build]
|
|
63
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
64
|
+
runs-on: ubuntu-24.04
|
|
65
|
+
permissions:
|
|
66
|
+
id-token: write
|
|
67
|
+
steps:
|
|
68
|
+
- name: Download distributions
|
|
69
|
+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
|
70
|
+
with:
|
|
71
|
+
name: python-package-distributions
|
|
72
|
+
path: dist/
|
|
73
|
+
|
|
74
|
+
- name: Publish to PyPI
|
|
75
|
+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
name: Test
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
workflow_call:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
test:
|
|
15
|
+
name: Test (${{ matrix.platform }}, Python ${{ matrix.python-version }})
|
|
16
|
+
runs-on: ${{ matrix.runs-on }}
|
|
17
|
+
strategy:
|
|
18
|
+
fail-fast: false
|
|
19
|
+
matrix:
|
|
20
|
+
python-version:
|
|
21
|
+
- '3.10'
|
|
22
|
+
- '3.11'
|
|
23
|
+
- '3.12'
|
|
24
|
+
- '3.13'
|
|
25
|
+
- '3.14'
|
|
26
|
+
platform:
|
|
27
|
+
- 'linux/amd64'
|
|
28
|
+
- 'linux/arm64'
|
|
29
|
+
- 'darwin/arm64'
|
|
30
|
+
- 'windows/amd64'
|
|
31
|
+
include:
|
|
32
|
+
- platform: 'linux/amd64'
|
|
33
|
+
runs-on: ubuntu-24.04
|
|
34
|
+
- platform: 'linux/arm64'
|
|
35
|
+
runs-on: ubuntu-24.04-arm
|
|
36
|
+
- platform: 'darwin/arm64'
|
|
37
|
+
runs-on: macos-15
|
|
38
|
+
- platform: 'windows/amd64'
|
|
39
|
+
runs-on: windows-2025
|
|
40
|
+
|
|
41
|
+
steps:
|
|
42
|
+
- name: Checkout repository
|
|
43
|
+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
44
|
+
|
|
45
|
+
- name: Set up Python
|
|
46
|
+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
|
47
|
+
with:
|
|
48
|
+
python-version: ${{ matrix.python-version }}
|
|
49
|
+
|
|
50
|
+
- name: Set up uv
|
|
51
|
+
uses: astral-sh/setup-uv@v6
|
|
52
|
+
|
|
53
|
+
- name: Install project
|
|
54
|
+
run: |
|
|
55
|
+
uv sync
|
|
56
|
+
|
|
57
|
+
- name: Run tests
|
|
58
|
+
run: |
|
|
59
|
+
uv run python -m unittest discover -s tests -v
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
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
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Ruff stuff:
|
|
192
|
+
.ruff_cache/
|
|
193
|
+
|
|
194
|
+
# PyPI configuration file
|
|
195
|
+
.pypirc
|
|
196
|
+
|
|
197
|
+
# Cursor
|
|
198
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
199
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
200
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
201
|
+
.cursorignore
|
|
202
|
+
.cursorindexingignore
|
|
203
|
+
|
|
204
|
+
# Marimo
|
|
205
|
+
marimo/_static/
|
|
206
|
+
marimo/_lsp/
|
|
207
|
+
__marimo__/
|