Skip to content

Commit c8f26f0

Browse files
committed
feat: initialisation du projet via PyCompiler_ARK
1 parent 2261bc4 commit c8f26f0

2 files changed

Lines changed: 33 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,7 @@ config.json
167167
config.yaml
168168
config.toml
169169
user_preferences.json
170-
bcasl.yml
171-
ark.yml
170+
172171
clean_venv_duplicates.py
173172
force_clean_venv_files.py
174173
Licence_Injector.py
@@ -178,7 +177,6 @@ sys
178177
.kombai
179178
.pref/
180179
.qodo
181-
.ark/
182180

183181
# Temporary files
184182
temp/

ark.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
project:
2+
name: PyCompiler_ARK
3+
version: 1.0.0
4+
entry: pycompiler_ark.py
5+
workspace:
6+
exclude:
7+
- .ark/**
8+
- '**/__pycache__/**'
9+
- '**/*.pyc'
10+
- '**/*.pyo'
11+
- '**/*.pyd'
12+
- .git/**
13+
- .svn/**
14+
- .hg/**
15+
- venv/**
16+
- .venv/**
17+
- env/**
18+
- .env/**
19+
- node_modules/**
20+
- build/**
21+
- dist/**
22+
- '*.spec'
23+
- '*.egg-info/**'
24+
- .pytest_cache/**
25+
- .mypy_cache/**
26+
- .tox/**
27+
- site-packages/**
28+
build:
29+
engine: pyinstaller
30+
output: dist/
31+
data: []
32+
exclude: []

0 commit comments

Comments
 (0)