fabricatio 0.2.0.dev9__tar.gz → 0.2.0.dev10__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 (94) hide show
  1. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/.github/workflows/build-package.yaml +80 -80
  2. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/.github/workflows/ruff.yaml +20 -20
  3. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/.github/workflows/tests.yaml +32 -32
  4. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/.gitignore +165 -165
  5. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/.python-version +1 -1
  6. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/Cargo.lock +2131 -1816
  7. fabricatio-0.2.0.dev10/Cargo.toml +18 -0
  8. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/LICENSE +21 -21
  9. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/Makefile +25 -25
  10. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/PKG-INFO +194 -194
  11. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/README.md +193 -193
  12. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/examples/minor/hello_fabricatio.py +29 -29
  13. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/examples/propose_task/propose.py +31 -31
  14. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/examples/simple_chat/chat.py +31 -31
  15. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/pyproject.toml +150 -150
  16. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/__init__.py +35 -32
  17. fabricatio-0.2.0.dev10/python/fabricatio/_rust.pyi +53 -0
  18. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/actions/__init__.py +5 -5
  19. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/actions/communication.py +13 -13
  20. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/actions/transmission.py +32 -32
  21. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/config.py +205 -206
  22. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/core.py +167 -167
  23. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/decorators.py +56 -56
  24. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/fs/__init__.py +5 -5
  25. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/fs/readers.py +5 -5
  26. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/journal.py +23 -23
  27. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/action.py +128 -128
  28. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/events.py +80 -80
  29. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/generic.py +388 -388
  30. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/role.py +26 -26
  31. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/task.py +283 -283
  32. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/tool.py +100 -100
  33. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/models/utils.py +78 -78
  34. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/parser.py +69 -69
  35. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/toolboxes/__init__.py +7 -7
  36. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/toolboxes/task.py +4 -4
  37. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/src/lib.rs +17 -14
  38. fabricatio-0.2.0.dev10/src/templates.rs +108 -0
  39. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/binary-exploitation-ctf-solver.hbs +53 -53
  40. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/claude-xml.hbs +35 -35
  41. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/clean-up-code.hbs +37 -37
  42. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/cryptography-ctf-solver.hbs +42 -42
  43. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/document-the-code.hbs +29 -29
  44. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/find-security-vulnerabilities.hbs +47 -47
  45. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/fix-bugs.hbs +42 -42
  46. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/improve-performance.hbs +41 -41
  47. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/refactor.hbs +49 -49
  48. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/reverse-engineering-ctf-solver.hbs +54 -54
  49. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/web-ctf-solver.hbs +48 -48
  50. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/write-git-commit.hbs +28 -28
  51. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/write-github-pull-request.hbs +58 -58
  52. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/templates/built-in/write-github-readme.hbs +33 -33
  53. fabricatio-0.2.0.dev10/templates.tar.gz +0 -0
  54. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_config.py +18 -18
  55. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_core.py +56 -56
  56. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_decorators.py +23 -23
  57. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_events.py +41 -41
  58. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_examples.py +30 -30
  59. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_action.py +40 -40
  60. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_communication.py +19 -19
  61. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_events.py +26 -26
  62. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_generic.py +21 -21
  63. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_llm_usage.py +21 -21
  64. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_propose_task.py +22 -22
  65. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_role.py +22 -22
  66. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_role_with_actions.py +22 -22
  67. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_task.py +39 -39
  68. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_template_manager.py +29 -29
  69. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_tool.py +55 -55
  70. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_transmission.py +29 -29
  71. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_utils.py +11 -11
  72. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_briefing.py +17 -17
  73. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_briefing_and_json_example.py +22 -22
  74. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_briefing_and_llm_usage.py +22 -22
  75. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_briefing_and_llm_usage_and_json_example.py +29 -29
  76. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency.py +19 -19
  77. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_briefing.py +22 -22
  78. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_briefing_and_json_example.py +29 -29
  79. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_briefing_and_llm_usage.py +25 -25
  80. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_json_example.py +22 -22
  81. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_llm_usage.py +22 -22
  82. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_dependency_and_llm_usage_and_json_example.py +25 -25
  83. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_with_json_example.py +17 -17
  84. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_models/test_workflow.py +29 -29
  85. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/test_parser.py +9 -9
  86. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/uv.lock +1 -1
  87. fabricatio-0.2.0.dev9/Cargo.toml +0 -10
  88. fabricatio-0.2.0.dev9/python/fabricatio/_rust.pyi +0 -1
  89. fabricatio-0.2.0.dev9/python/fabricatio/templates.py +0 -41
  90. fabricatio-0.2.0.dev9/src/downloaders.rs +0 -0
  91. fabricatio-0.2.0.dev9/src/templates.rs +0 -0
  92. fabricatio-0.2.0.dev9/templates.tar.gz +0 -0
  93. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/python/fabricatio/py.typed +0 -0
  94. {fabricatio-0.2.0.dev9 → fabricatio-0.2.0.dev10}/tests/__init__.py +0 -0
@@ -1,81 +1,81 @@
1
- name: Build and Release
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
- branches:
9
- - master
10
-
11
- jobs:
12
- check-and-release:
13
- runs-on: ${{ matrix.os }}
14
- strategy:
15
- matrix:
16
- os: [ windows-latest, ubuntu-latest ]
17
- steps:
18
- - name: Checkout repository
19
- uses: actions/checkout@v4
20
- - name: Get current version
21
- id: get_version
22
- run: |
23
- CURRENT_VERSION=$(grep '^version' pyproject.toml | cut -d '"' -f 2)
24
- echo "CURRENT_VERSION=v$CURRENT_VERSION" >> $GITHUB_OUTPUT
25
- shell: bash
26
- - name: Get latest tag
27
- uses: JinoArch/get-latest-tag@latest
28
- id: tag
29
-
30
- - name: Check if version has changed
31
- id: check_version_change
32
- run: |
33
- LATEST_TAG=${{ steps.tag.outputs.latestTag }}
34
- echo "Latest tag is $LATEST_TAG"
35
- echo "Current version is ${{ steps.get_version.outputs.CURRENT_VERSION }}"
36
- if [ "$LATEST_TAG" != "${{ steps.get_version.outputs.CURRENT_VERSION }}" ]; then
37
- echo "VERSION_CHANGED=true" >> $GITHUB_OUTPUT
38
- else
39
- echo "VERSION_CHANGED=false" >> $GITHUB_OUTPUT
40
- fi
41
- shell: bash
42
-
43
- - name: Install the latest version of uv
44
- uses: astral-sh/setup-uv@v5
45
- with:
46
- version: "latest"
47
- - name: Install nightly rust
48
- run: |
49
- rustup default nightly
50
- - name: Install deps
51
- run: |
52
- uv sync --no-install-project --all-extras
53
- - name: Build
54
- run: |
55
- make
56
-
57
- - name: Packing templates
58
- if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
59
- run: |
60
- tar -czf templates.tar.gz templates
61
-
62
- - name: Create Release and upload assets
63
- if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
64
- id: create_release
65
- uses: softprops/action-gh-release@v2
66
- with:
67
- tag_name: ${{ steps.get_version.outputs.CURRENT_VERSION }}
68
- name: ${{ steps.get_version.outputs.CURRENT_VERSION }}
69
- files: |
70
- dist/*
71
- templates.tar.gz
72
- env:
73
- GITHUB_TOKEN: ${{ secrets.PAT }}
74
-
75
- - name: Upload to PyPI
76
- if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
77
- run: |
78
- make publish
79
- env:
80
- MATURIN_USERNAME: __token__
1
+ name: Build and Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ check-and-release:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ matrix:
16
+ os: [ windows-latest, ubuntu-latest ]
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
+ - name: Get current version
21
+ id: get_version
22
+ run: |
23
+ CURRENT_VERSION=$(grep '^version' pyproject.toml | cut -d '"' -f 2)
24
+ echo "CURRENT_VERSION=v$CURRENT_VERSION" >> $GITHUB_OUTPUT
25
+ shell: bash
26
+ - name: Get latest tag
27
+ uses: JinoArch/get-latest-tag@latest
28
+ id: tag
29
+
30
+ - name: Check if version has changed
31
+ id: check_version_change
32
+ run: |
33
+ LATEST_TAG=${{ steps.tag.outputs.latestTag }}
34
+ echo "Latest tag is $LATEST_TAG"
35
+ echo "Current version is ${{ steps.get_version.outputs.CURRENT_VERSION }}"
36
+ if [ "$LATEST_TAG" != "${{ steps.get_version.outputs.CURRENT_VERSION }}" ]; then
37
+ echo "VERSION_CHANGED=true" >> $GITHUB_OUTPUT
38
+ else
39
+ echo "VERSION_CHANGED=false" >> $GITHUB_OUTPUT
40
+ fi
41
+ shell: bash
42
+
43
+ - name: Install the latest version of uv
44
+ uses: astral-sh/setup-uv@v5
45
+ with:
46
+ version: "latest"
47
+ - name: Install nightly rust
48
+ run: |
49
+ rustup default nightly
50
+ - name: Install deps
51
+ run: |
52
+ uv sync --no-install-project --all-extras
53
+ - name: Build
54
+ run: |
55
+ make
56
+
57
+ - name: Packing templates
58
+ if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
59
+ run: |
60
+ tar -czf templates.tar.gz templates
61
+
62
+ - name: Create Release and upload assets
63
+ if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
64
+ id: create_release
65
+ uses: softprops/action-gh-release@v2
66
+ with:
67
+ tag_name: ${{ steps.get_version.outputs.CURRENT_VERSION }}
68
+ name: ${{ steps.get_version.outputs.CURRENT_VERSION }}
69
+ files: |
70
+ dist/*
71
+ templates.tar.gz
72
+ env:
73
+ GITHUB_TOKEN: ${{ secrets.PAT }}
74
+
75
+ - name: Upload to PyPI
76
+ if: ${{ steps.check_version_change.outputs.VERSION_CHANGED == 'true' }}
77
+ run: |
78
+ make publish
79
+ env:
80
+ MATURIN_USERNAME: __token__
81
81
  MATURIN_PASSWORD: ${{ secrets.PYPI_TOKEN }}
@@ -1,20 +1,20 @@
1
- name: Pre-commit checks
2
-
3
- on:
4
- pull_request:
5
- branches:
6
- - '**'
7
- push:
8
- branches:
9
- - '**'
10
-
11
- jobs:
12
- ruff-linter:
13
- runs-on: ubuntu-latest
14
- steps:
15
- - name: Checkout repository
16
- uses: actions/checkout@v4
17
- - name: Setup ruff
18
- uses: astral-sh/ruff-action@v3
19
- with:
20
- github-token: ${{ secrets.PAT }}
1
+ name: Pre-commit checks
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - '**'
7
+ push:
8
+ branches:
9
+ - '**'
10
+
11
+ jobs:
12
+ ruff-linter:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ - name: Setup ruff
18
+ uses: astral-sh/ruff-action@v3
19
+ with:
20
+ github-token: ${{ secrets.PAT }}
@@ -1,32 +1,32 @@
1
- name: Tests
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
- branches:
9
- - master
10
-
11
- jobs:
12
- test:
13
- runs-on: windows-latest
14
- steps:
15
- - name: Checkout repository
16
- uses: actions/checkout@v4
17
-
18
- - name: Install the latest version of uv
19
- uses: astral-sh/setup-uv@v5
20
- with:
21
- version: "latest"
22
-
23
- - name: Install deps
24
- run: |
25
- uv sync
26
-
27
- - name: Build
28
- run: |
29
- pytest tests
30
-
31
-
32
-
1
+ name: Tests
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: windows-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+
18
+ - name: Install the latest version of uv
19
+ uses: astral-sh/setup-uv@v5
20
+ with:
21
+ version: "latest"
22
+
23
+ - name: Install deps
24
+ run: |
25
+ uv sync
26
+
27
+ - name: Build
28
+ run: |
29
+ pytest tests
30
+
31
+
32
+
@@ -1,166 +1,166 @@
1
- ### Python template
2
- # Byte-compiled / optimized / DLL files
3
- __pycache__/
4
- *.py[cod]
5
- *$py.class
6
-
7
- # C extensions
8
- *.so
9
-
10
- # Distribution / packaging
11
- .Python
12
- build/
13
- develop-eggs/
14
- dist/
15
- downloads/
16
- eggs/
17
- .eggs/
18
- lib/
19
- lib64/
20
- parts/
21
- sdist/
22
- var/
23
- wheels/
24
- share/python-wheels/
25
- *.egg-info/
26
- .installed.cfg
27
- *.egg
28
- MANIFEST
29
-
30
- # PyInstaller
31
- # Usually these files are written by a python script from a template
32
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
- *.manifest
34
- *.spec
35
-
36
- # Installer logs
37
- pip-log.txt
38
- pip-delete-this-directory.txt
39
-
40
- # Unit test / coverage reports
41
- htmlcov/
42
- .tox/
43
- .nox/
44
- .coverage
45
- .coverage.*
46
- .cache
47
- nosetests.xml
48
- coverage.xml
49
- *.cover
50
- *.py,cover
51
- .hypothesis/
52
- .pytest_cache/
53
- cover/
54
-
55
- # Translations
56
- *.mo
57
- *.pot
58
-
59
- # Django stuff:
60
- *.log
61
- local_settings.py
62
- db.sqlite3
63
- db.sqlite3-journal
64
-
65
- # Flask stuff:
66
- instance/
67
- .webassets-cache
68
-
69
- # Scrapy stuff:
70
- .scrapy
71
-
72
- # Sphinx documentation
73
- docs/_build/
74
-
75
- # PyBuilder
76
- .pybuilder/
77
- target/
78
-
79
- # Jupyter Notebook
80
- .ipynb_checkpoints
81
-
82
- # IPython
83
- profile_default/
84
- ipython_config.py
85
-
86
- # pyenv
87
- # For a library or package, you might want to ignore these files since the code is
88
- # intended to run in multiple environments; otherwise, check them in:
89
- # .python-version
90
-
91
- # pipenv
92
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
- # install all needed dependencies.
96
- #Pipfile.lock
97
-
98
- # poetry
99
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
100
- # This is especially recommended for binary packages to ensure reproducibility, and is more
101
- # commonly ignored for libraries.
102
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
103
- #poetry.lock
104
-
105
- # pdm
106
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
107
- #pdm.lock
108
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
109
- # in version control.
110
- # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
111
- .pdm.toml
112
- .pdm-python
113
- .pdm-build/
114
-
115
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116
- __pypackages__/
117
-
118
- # Celery stuff
119
- celerybeat-schedule
120
- celerybeat.pid
121
-
122
- # SageMath parsed files
123
- *.sage.py
124
-
125
- # Environments
126
- .env
127
- .venv
128
- env/
129
- venv/
130
- ENV/
131
- env.bak/
132
- venv.bak/
133
-
134
- # Spyder project settings
135
- .spyderproject
136
- .spyproject
137
-
138
- # Rope project settings
139
- .ropeproject
140
-
141
- # mkdocs documentation
142
- /site
143
-
144
- # mypy
145
- .mypy_cache/
146
- .dmypy.json
147
- dmypy.json
148
-
149
- # Pyre type checker
150
- .pyre/
151
-
152
- # pytype static type analyzer
153
- .pytype/
154
-
155
- # Cython debug symbols
156
- cython_debug/
157
-
158
- # PyCharm
159
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
160
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
161
- # and can be added to the global gitignore or merged into this file. For a more nuclear
162
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
163
- .idea/
164
- *playground*
165
-
1
+ ### Python template
2
+ # Byte-compiled / optimized / DLL files
3
+ __pycache__/
4
+ *.py[cod]
5
+ *$py.class
6
+
7
+ # C extensions
8
+ *.so
9
+
10
+ # Distribution / packaging
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+ cover/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # For a library or package, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # .python-version
90
+
91
+ # pipenv
92
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
+ # install all needed dependencies.
96
+ #Pipfile.lock
97
+
98
+ # poetry
99
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
100
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
101
+ # commonly ignored for libraries.
102
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
103
+ #poetry.lock
104
+
105
+ # pdm
106
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
107
+ #pdm.lock
108
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
109
+ # in version control.
110
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
111
+ .pdm.toml
112
+ .pdm-python
113
+ .pdm-build/
114
+
115
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116
+ __pypackages__/
117
+
118
+ # Celery stuff
119
+ celerybeat-schedule
120
+ celerybeat.pid
121
+
122
+ # SageMath parsed files
123
+ *.sage.py
124
+
125
+ # Environments
126
+ .env
127
+ .venv
128
+ env/
129
+ venv/
130
+ ENV/
131
+ env.bak/
132
+ venv.bak/
133
+
134
+ # Spyder project settings
135
+ .spyderproject
136
+ .spyproject
137
+
138
+ # Rope project settings
139
+ .ropeproject
140
+
141
+ # mkdocs documentation
142
+ /site
143
+
144
+ # mypy
145
+ .mypy_cache/
146
+ .dmypy.json
147
+ dmypy.json
148
+
149
+ # Pyre type checker
150
+ .pyre/
151
+
152
+ # pytype static type analyzer
153
+ .pytype/
154
+
155
+ # Cython debug symbols
156
+ cython_debug/
157
+
158
+ # PyCharm
159
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
160
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
161
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
162
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
163
+ .idea/
164
+ *playground*
165
+
166
166
  extra/scripts
@@ -1 +1 @@
1
- 3.12
1
+ 3.12