synfire 0.0.1__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.
- synfire-0.0.1/.gitignore +563 -0
- synfire-0.0.1/LICENSE +5 -0
- synfire-0.0.1/PKG-INFO +521 -0
- synfire-0.0.1/README.md +482 -0
- synfire-0.0.1/pyproject.toml +82 -0
- synfire-0.0.1/src/synfire/__init__.py +84 -0
- synfire-0.0.1/src/synfire/__main__.py +13 -0
- synfire-0.0.1/src/synfire/_version.py +7 -0
- synfire-0.0.1/src/synfire/api.py +806 -0
- synfire-0.0.1/src/synfire/auth.py +299 -0
- synfire-0.0.1/src/synfire/cli.py +146 -0
- synfire-0.0.1/src/synfire/client.py +889 -0
- synfire-0.0.1/src/synfire/commands/.gitkeep +1 -0
- synfire-0.0.1/src/synfire/commands/__init__.py +20 -0
- synfire-0.0.1/src/synfire/commands/info.py +186 -0
- synfire-0.0.1/src/synfire/commands/login.py +218 -0
- synfire-0.0.1/src/synfire/commands/logout.py +66 -0
- synfire-0.0.1/src/synfire/commands/pull.py +427 -0
- synfire-0.0.1/src/synfire/commands/push.py +430 -0
- synfire-0.0.1/src/synfire/commands/search.py +276 -0
- synfire-0.0.1/src/synfire/commands/verify.py +274 -0
- synfire-0.0.1/src/synfire/commands/whoami.py +161 -0
- synfire-0.0.1/src/synfire/config.py +405 -0
- synfire-0.0.1/src/synfire/constants.py +132 -0
- synfire-0.0.1/src/synfire/download.py +417 -0
- synfire-0.0.1/src/synfire/exceptions.py +438 -0
- synfire-0.0.1/src/synfire/exit_codes.py +71 -0
- synfire-0.0.1/src/synfire/models/__init__.py +47 -0
- synfire-0.0.1/src/synfire/models/base.py +170 -0
- synfire-0.0.1/src/synfire/models/organization.py +77 -0
- synfire-0.0.1/src/synfire/models/release.py +404 -0
- synfire-0.0.1/src/synfire/models/repository.py +97 -0
- synfire-0.0.1/src/synfire/models/user.py +60 -0
- synfire-0.0.1/src/synfire/output/__init__.py +57 -0
- synfire-0.0.1/src/synfire/output/console.py +110 -0
- synfire-0.0.1/src/synfire/output/errors.py +193 -0
- synfire-0.0.1/src/synfire/output/progress.py +345 -0
- synfire-0.0.1/src/synfire/output/styles.py +94 -0
- synfire-0.0.1/src/synfire/output/table.py +299 -0
- synfire-0.0.1/src/synfire/py.typed +1 -0
- synfire-0.0.1/src/synfire/upload.py +594 -0
synfire-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
# ============================================================================
|
|
2
|
+
# Synfire Project .gitignore
|
|
3
|
+
# Comprehensive ignore patterns for Python, Node.js, IDE files, OS files, and secrets
|
|
4
|
+
# ============================================================================
|
|
5
|
+
|
|
6
|
+
# ----------------------------------------------------------------------------
|
|
7
|
+
# Python
|
|
8
|
+
# ----------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
# Byte-compiled / optimized / DLL files
|
|
11
|
+
__pycache__/
|
|
12
|
+
*.py[cod]
|
|
13
|
+
*$py.class
|
|
14
|
+
|
|
15
|
+
# C extensions
|
|
16
|
+
*.so
|
|
17
|
+
|
|
18
|
+
# Distribution / packaging
|
|
19
|
+
.Python
|
|
20
|
+
build/
|
|
21
|
+
develop-eggs/
|
|
22
|
+
dist/
|
|
23
|
+
downloads/
|
|
24
|
+
eggs/
|
|
25
|
+
.eggs/
|
|
26
|
+
lib/
|
|
27
|
+
!web/src/lib/
|
|
28
|
+
!infra/lib/
|
|
29
|
+
!infra/lib/**
|
|
30
|
+
lib64/
|
|
31
|
+
parts/
|
|
32
|
+
sdist/
|
|
33
|
+
var/
|
|
34
|
+
wheels/
|
|
35
|
+
share/python-wheels/
|
|
36
|
+
*.egg-info/
|
|
37
|
+
.installed.cfg
|
|
38
|
+
*.egg
|
|
39
|
+
MANIFEST
|
|
40
|
+
|
|
41
|
+
# PyInstaller
|
|
42
|
+
*.manifest
|
|
43
|
+
*.spec
|
|
44
|
+
|
|
45
|
+
# Installer logs
|
|
46
|
+
pip-log.txt
|
|
47
|
+
pip-delete-this-directory.txt
|
|
48
|
+
|
|
49
|
+
# Unit test / coverage reports
|
|
50
|
+
htmlcov/
|
|
51
|
+
.tox/
|
|
52
|
+
.nox/
|
|
53
|
+
.coverage
|
|
54
|
+
.coverage.*
|
|
55
|
+
.cache
|
|
56
|
+
nosetests.xml
|
|
57
|
+
coverage.xml
|
|
58
|
+
*.cover
|
|
59
|
+
*.py,cover
|
|
60
|
+
.hypothesis/
|
|
61
|
+
.pytest_cache/
|
|
62
|
+
pytest_cache/
|
|
63
|
+
|
|
64
|
+
# Translations
|
|
65
|
+
*.mo
|
|
66
|
+
*.pot
|
|
67
|
+
|
|
68
|
+
# Scrapy
|
|
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
|
+
.python-version
|
|
87
|
+
|
|
88
|
+
# pipenv
|
|
89
|
+
Pipfile.lock
|
|
90
|
+
|
|
91
|
+
# poetry
|
|
92
|
+
poetry.lock
|
|
93
|
+
|
|
94
|
+
# pdm
|
|
95
|
+
.pdm.toml
|
|
96
|
+
.pdm-python
|
|
97
|
+
.pdm-build/
|
|
98
|
+
|
|
99
|
+
# PEP 582 (used by __pypackages__)
|
|
100
|
+
__pypackages__/
|
|
101
|
+
|
|
102
|
+
# Celery
|
|
103
|
+
celerybeat-schedule
|
|
104
|
+
celerybeat.pid
|
|
105
|
+
|
|
106
|
+
# SageMath parsed files
|
|
107
|
+
*.sage.py
|
|
108
|
+
|
|
109
|
+
# Virtual environments
|
|
110
|
+
.env/
|
|
111
|
+
.venv/
|
|
112
|
+
env/
|
|
113
|
+
venv/
|
|
114
|
+
ENV/
|
|
115
|
+
env.bak/
|
|
116
|
+
venv.bak/
|
|
117
|
+
.virtualenv/
|
|
118
|
+
virtualenv/
|
|
119
|
+
|
|
120
|
+
# Spyder project settings
|
|
121
|
+
.spyderproject
|
|
122
|
+
.spyproject
|
|
123
|
+
|
|
124
|
+
# Rope project settings
|
|
125
|
+
.ropeproject
|
|
126
|
+
|
|
127
|
+
# mkdocs documentation
|
|
128
|
+
/site
|
|
129
|
+
|
|
130
|
+
# mypy
|
|
131
|
+
.mypy_cache/
|
|
132
|
+
.dmypy.json
|
|
133
|
+
dmypy.json
|
|
134
|
+
|
|
135
|
+
# Pyre type checker
|
|
136
|
+
.pyre/
|
|
137
|
+
|
|
138
|
+
# pytype static type analyzer
|
|
139
|
+
.pytype/
|
|
140
|
+
|
|
141
|
+
# Cython debug symbols
|
|
142
|
+
cython_debug/
|
|
143
|
+
|
|
144
|
+
# Ruff
|
|
145
|
+
.ruff_cache/
|
|
146
|
+
|
|
147
|
+
# ----------------------------------------------------------------------------
|
|
148
|
+
# Node.js / JavaScript / TypeScript
|
|
149
|
+
# ----------------------------------------------------------------------------
|
|
150
|
+
|
|
151
|
+
# Dependencies
|
|
152
|
+
node_modules/
|
|
153
|
+
jspm_packages/
|
|
154
|
+
bower_components/
|
|
155
|
+
|
|
156
|
+
# Build output
|
|
157
|
+
dist/
|
|
158
|
+
out/
|
|
159
|
+
cdk.out/
|
|
160
|
+
.next/
|
|
161
|
+
.nuxt/
|
|
162
|
+
.output/
|
|
163
|
+
.cache/
|
|
164
|
+
.turbo/
|
|
165
|
+
output/
|
|
166
|
+
|
|
167
|
+
# Keep the Python package's output helpers tracked.
|
|
168
|
+
!packages/synfire/src/synfire/output/
|
|
169
|
+
!packages/synfire/src/synfire/output/**
|
|
170
|
+
packages/synfire/src/synfire/output/__pycache__/
|
|
171
|
+
packages/synfire/src/synfire/output/**/*.pyc
|
|
172
|
+
|
|
173
|
+
# Keep tracked source modules named "output" inside the Python package.
|
|
174
|
+
!packages/synfire/src/synfire/output/
|
|
175
|
+
!packages/synfire/src/synfire/output/**
|
|
176
|
+
|
|
177
|
+
# Keep the Python package's output helpers tracked.
|
|
178
|
+
!packages/synfire/src/synfire/output/
|
|
179
|
+
!packages/synfire/src/synfire/output/**
|
|
180
|
+
# Package manager files (keep package-lock.json for reproducible builds)
|
|
181
|
+
yarn.lock
|
|
182
|
+
pnpm-lock.yaml
|
|
183
|
+
.pnp
|
|
184
|
+
.pnp.js
|
|
185
|
+
|
|
186
|
+
# Runtime data
|
|
187
|
+
pids
|
|
188
|
+
*.pid
|
|
189
|
+
*.seed
|
|
190
|
+
*.pid.lock
|
|
191
|
+
|
|
192
|
+
# Coverage
|
|
193
|
+
coverage/
|
|
194
|
+
lib-cov/
|
|
195
|
+
.nyc_output/
|
|
196
|
+
api/coverage-unit.json
|
|
197
|
+
packages/synfire/coverage.json
|
|
198
|
+
packages/synfire-cli/coverage.json
|
|
199
|
+
|
|
200
|
+
# Logs
|
|
201
|
+
logs/
|
|
202
|
+
*.log
|
|
203
|
+
npm-debug.log*
|
|
204
|
+
yarn-debug.log*
|
|
205
|
+
yarn-error.log*
|
|
206
|
+
lerna-debug.log*
|
|
207
|
+
.pnpm-debug.log*
|
|
208
|
+
|
|
209
|
+
# TypeScript
|
|
210
|
+
*.tsbuildinfo
|
|
211
|
+
.tsbuildinfo/
|
|
212
|
+
|
|
213
|
+
# Optional npm cache directory
|
|
214
|
+
.npm
|
|
215
|
+
|
|
216
|
+
# Optional eslint cache
|
|
217
|
+
.eslintcache
|
|
218
|
+
|
|
219
|
+
# Optional stylelint cache
|
|
220
|
+
.stylelintcache
|
|
221
|
+
|
|
222
|
+
# Local implementation worktrees
|
|
223
|
+
.worktrees/
|
|
224
|
+
|
|
225
|
+
# Microbundle cache
|
|
226
|
+
.rpt2_cache/
|
|
227
|
+
.rts2_cache_cjs/
|
|
228
|
+
.rts2_cache_es/
|
|
229
|
+
.rts2_cache_umd/
|
|
230
|
+
|
|
231
|
+
# Optional REPL history
|
|
232
|
+
.node_repl_history
|
|
233
|
+
|
|
234
|
+
# Dependency directories (for bundled cli tools)
|
|
235
|
+
.yarn/cache
|
|
236
|
+
.yarn/unplugged
|
|
237
|
+
.yarn/build-state.yml
|
|
238
|
+
.yarn/install-state.gz
|
|
239
|
+
|
|
240
|
+
# Storybook
|
|
241
|
+
storybook-static/
|
|
242
|
+
|
|
243
|
+
# Playwright
|
|
244
|
+
/test-results/
|
|
245
|
+
/playwright-report/
|
|
246
|
+
/blob-report/
|
|
247
|
+
/playwright/.cache/
|
|
248
|
+
|
|
249
|
+
# Git worktrees
|
|
250
|
+
.worktrees/
|
|
251
|
+
|
|
252
|
+
# Vitest
|
|
253
|
+
.vitest/
|
|
254
|
+
|
|
255
|
+
# ----------------------------------------------------------------------------
|
|
256
|
+
# Environment and Secrets
|
|
257
|
+
# ----------------------------------------------------------------------------
|
|
258
|
+
|
|
259
|
+
# Environment files (NEVER commit secrets)
|
|
260
|
+
.env
|
|
261
|
+
.env.*
|
|
262
|
+
!.env.example
|
|
263
|
+
!.env.azure.example
|
|
264
|
+
!.env.template
|
|
265
|
+
.envrc
|
|
266
|
+
|
|
267
|
+
# AWS credentials
|
|
268
|
+
.aws/
|
|
269
|
+
|
|
270
|
+
# GCP credentials
|
|
271
|
+
*.json.key
|
|
272
|
+
service-account*.json
|
|
273
|
+
gcloud/
|
|
274
|
+
|
|
275
|
+
# SSH keys
|
|
276
|
+
*.pem
|
|
277
|
+
*.key
|
|
278
|
+
id_rsa*
|
|
279
|
+
id_ed25519*
|
|
280
|
+
id_ecdsa*
|
|
281
|
+
id_dsa*
|
|
282
|
+
|
|
283
|
+
# Certificates
|
|
284
|
+
*.crt
|
|
285
|
+
*.cer
|
|
286
|
+
*.p12
|
|
287
|
+
*.pfx
|
|
288
|
+
|
|
289
|
+
# Secrets files
|
|
290
|
+
secrets/
|
|
291
|
+
.secrets/
|
|
292
|
+
*.secret
|
|
293
|
+
*.secrets
|
|
294
|
+
|
|
295
|
+
# Credentials
|
|
296
|
+
credentials.json
|
|
297
|
+
credentials/
|
|
298
|
+
.credentials/
|
|
299
|
+
|
|
300
|
+
# API keys file
|
|
301
|
+
api-keys.txt
|
|
302
|
+
api_keys.json
|
|
303
|
+
|
|
304
|
+
# ----------------------------------------------------------------------------
|
|
305
|
+
# IDE and Editors
|
|
306
|
+
# ----------------------------------------------------------------------------
|
|
307
|
+
|
|
308
|
+
# Visual Studio Code
|
|
309
|
+
.vscode/
|
|
310
|
+
*.code-workspace
|
|
311
|
+
.history/
|
|
312
|
+
|
|
313
|
+
# JetBrains IDEs (PyCharm, WebStorm, IntelliJ, etc.)
|
|
314
|
+
.idea/
|
|
315
|
+
*.iml
|
|
316
|
+
*.ipr
|
|
317
|
+
*.iws
|
|
318
|
+
out/
|
|
319
|
+
.idea_modules/
|
|
320
|
+
|
|
321
|
+
# Sublime Text
|
|
322
|
+
*.sublime-project
|
|
323
|
+
*.sublime-workspace
|
|
324
|
+
|
|
325
|
+
# Vim
|
|
326
|
+
*.swp
|
|
327
|
+
*.swo
|
|
328
|
+
*.swn
|
|
329
|
+
*~
|
|
330
|
+
.netrwhist
|
|
331
|
+
Session.vim
|
|
332
|
+
Sessionx.vim
|
|
333
|
+
.vim/
|
|
334
|
+
|
|
335
|
+
# Emacs
|
|
336
|
+
*~
|
|
337
|
+
\#*\#
|
|
338
|
+
/.emacs.desktop
|
|
339
|
+
/.emacs.desktop.lock
|
|
340
|
+
*.elc
|
|
341
|
+
auto-save-list
|
|
342
|
+
tramp
|
|
343
|
+
.\#*
|
|
344
|
+
.org-id-locations
|
|
345
|
+
*_archive
|
|
346
|
+
*_flymake.*
|
|
347
|
+
/eshell/history
|
|
348
|
+
/eshell/lastdir
|
|
349
|
+
/elpa/
|
|
350
|
+
*.rel
|
|
351
|
+
/auto/
|
|
352
|
+
.cask/
|
|
353
|
+
dist/
|
|
354
|
+
flycheck_*.el
|
|
355
|
+
.projectile
|
|
356
|
+
.dir-locals.el
|
|
357
|
+
network-security.data
|
|
358
|
+
|
|
359
|
+
# TextMate
|
|
360
|
+
*.tmproj
|
|
361
|
+
*.tmproject
|
|
362
|
+
tmtags
|
|
363
|
+
|
|
364
|
+
# Notepad++
|
|
365
|
+
nppBackup/
|
|
366
|
+
|
|
367
|
+
# ----------------------------------------------------------------------------
|
|
368
|
+
# Operating System
|
|
369
|
+
# ----------------------------------------------------------------------------
|
|
370
|
+
|
|
371
|
+
# macOS
|
|
372
|
+
.DS_Store
|
|
373
|
+
.AppleDouble
|
|
374
|
+
.LSOverride
|
|
375
|
+
._*
|
|
376
|
+
|
|
377
|
+
# macOS Thumbnails
|
|
378
|
+
Icon
|
|
379
|
+
|
|
380
|
+
# macOS directory settings
|
|
381
|
+
.Spotlight-V100
|
|
382
|
+
.Trashes
|
|
383
|
+
.fseventsd
|
|
384
|
+
|
|
385
|
+
# Windows
|
|
386
|
+
Thumbs.db
|
|
387
|
+
Thumbs.db:encryptable
|
|
388
|
+
ehthumbs.db
|
|
389
|
+
ehthumbs_vista.db
|
|
390
|
+
Desktop.ini
|
|
391
|
+
|
|
392
|
+
# Windows shortcuts
|
|
393
|
+
*.lnk
|
|
394
|
+
|
|
395
|
+
# Windows Recycle Bin
|
|
396
|
+
$RECYCLE.BIN/
|
|
397
|
+
|
|
398
|
+
# Windows Installer files
|
|
399
|
+
*.cab
|
|
400
|
+
*.msi
|
|
401
|
+
*.msix
|
|
402
|
+
*.msm
|
|
403
|
+
*.msp
|
|
404
|
+
|
|
405
|
+
# Linux
|
|
406
|
+
*~
|
|
407
|
+
.fuse_hidden*
|
|
408
|
+
.directory
|
|
409
|
+
.Trash-*
|
|
410
|
+
.nfs*
|
|
411
|
+
|
|
412
|
+
# ----------------------------------------------------------------------------
|
|
413
|
+
# Docker
|
|
414
|
+
# ----------------------------------------------------------------------------
|
|
415
|
+
|
|
416
|
+
# Docker data volumes (local dev)
|
|
417
|
+
.docker-data/
|
|
418
|
+
docker-data/
|
|
419
|
+
data/postgres/
|
|
420
|
+
data/redis/
|
|
421
|
+
data/minio/
|
|
422
|
+
|
|
423
|
+
# Docker override files (optional)
|
|
424
|
+
docker-compose.override.yml
|
|
425
|
+
docker-compose.*.local.yml
|
|
426
|
+
|
|
427
|
+
# ----------------------------------------------------------------------------
|
|
428
|
+
# Database
|
|
429
|
+
# ----------------------------------------------------------------------------
|
|
430
|
+
|
|
431
|
+
# SQLite
|
|
432
|
+
*.sqlite
|
|
433
|
+
*.sqlite3
|
|
434
|
+
*.db
|
|
435
|
+
|
|
436
|
+
# PostgreSQL
|
|
437
|
+
*.pgdata
|
|
438
|
+
|
|
439
|
+
# Alembic
|
|
440
|
+
alembic/versions/*.pyc
|
|
441
|
+
|
|
442
|
+
# ----------------------------------------------------------------------------
|
|
443
|
+
# Logs and Temporary Files
|
|
444
|
+
# ----------------------------------------------------------------------------
|
|
445
|
+
|
|
446
|
+
# Log files
|
|
447
|
+
logs/
|
|
448
|
+
*.log
|
|
449
|
+
log/
|
|
450
|
+
|
|
451
|
+
# Temporary files
|
|
452
|
+
tmp/
|
|
453
|
+
temp/
|
|
454
|
+
*.tmp
|
|
455
|
+
*.temp
|
|
456
|
+
*.bak
|
|
457
|
+
*.backup
|
|
458
|
+
|
|
459
|
+
# Cache directories
|
|
460
|
+
.cache/
|
|
461
|
+
cache/
|
|
462
|
+
|
|
463
|
+
# ----------------------------------------------------------------------------
|
|
464
|
+
# Build and Artifacts
|
|
465
|
+
# ----------------------------------------------------------------------------
|
|
466
|
+
|
|
467
|
+
# Build directories
|
|
468
|
+
build/
|
|
469
|
+
builds/
|
|
470
|
+
_build/
|
|
471
|
+
|
|
472
|
+
# Artifacts
|
|
473
|
+
artifacts/
|
|
474
|
+
.artifacts/
|
|
475
|
+
|
|
476
|
+
# Terraform
|
|
477
|
+
*.tfstate
|
|
478
|
+
*.tfstate.*
|
|
479
|
+
*.tfvars
|
|
480
|
+
.terraform/
|
|
481
|
+
.terraform.lock.hcl
|
|
482
|
+
crash.log
|
|
483
|
+
crash.*.log
|
|
484
|
+
|
|
485
|
+
# Kubernetes
|
|
486
|
+
kubeconfig
|
|
487
|
+
.kube/
|
|
488
|
+
|
|
489
|
+
# Helm
|
|
490
|
+
charts/*.tgz
|
|
491
|
+
|
|
492
|
+
# ----------------------------------------------------------------------------
|
|
493
|
+
# Testing
|
|
494
|
+
# ----------------------------------------------------------------------------
|
|
495
|
+
|
|
496
|
+
# Test outputs
|
|
497
|
+
test-output/
|
|
498
|
+
test-results/
|
|
499
|
+
.test-results/
|
|
500
|
+
|
|
501
|
+
# Local verification artifacts (generated by local hooks/tests/debug runs)
|
|
502
|
+
output/
|
|
503
|
+
|
|
504
|
+
# Benchmark results
|
|
505
|
+
.benchmarks/
|
|
506
|
+
benchmarks/
|
|
507
|
+
|
|
508
|
+
# ----------------------------------------------------------------------------
|
|
509
|
+
# NIR Models (large files - consider Git LFS for actual model files)
|
|
510
|
+
# ----------------------------------------------------------------------------
|
|
511
|
+
|
|
512
|
+
# Large model files in development
|
|
513
|
+
*.nir.tmp
|
|
514
|
+
*.nir.bak
|
|
515
|
+
|
|
516
|
+
# Test model fixtures (if large, use Git LFS)
|
|
517
|
+
# Uncomment if needed:
|
|
518
|
+
# tests/fixtures/*.nir
|
|
519
|
+
|
|
520
|
+
# ----------------------------------------------------------------------------
|
|
521
|
+
# Miscellaneous
|
|
522
|
+
# ----------------------------------------------------------------------------
|
|
523
|
+
|
|
524
|
+
# Archives
|
|
525
|
+
*.tar
|
|
526
|
+
*.tar.gz
|
|
527
|
+
*.tar.bz2
|
|
528
|
+
*.tar.xz
|
|
529
|
+
*.zip
|
|
530
|
+
*.rar
|
|
531
|
+
*.7z
|
|
532
|
+
|
|
533
|
+
# Core dumps
|
|
534
|
+
core
|
|
535
|
+
core.*
|
|
536
|
+
|
|
537
|
+
# Profiling
|
|
538
|
+
*.prof
|
|
539
|
+
*.lprof
|
|
540
|
+
*.cprof
|
|
541
|
+
|
|
542
|
+
# Minified files (generated)
|
|
543
|
+
*.min.js
|
|
544
|
+
*.min.css
|
|
545
|
+
|
|
546
|
+
# Source maps (generated)
|
|
547
|
+
*.map
|
|
548
|
+
|
|
549
|
+
# Compiled output
|
|
550
|
+
*.pyc
|
|
551
|
+
*.pyo
|
|
552
|
+
*.class
|
|
553
|
+
*.dll
|
|
554
|
+
*.exe
|
|
555
|
+
*.o
|
|
556
|
+
*.a
|
|
557
|
+
|
|
558
|
+
# Lock files that should be committed are excluded above with !pattern
|
|
559
|
+
# Uncomment if you want to ignore specific lock files:
|
|
560
|
+
# Pipfile.lock
|
|
561
|
+
# poetry.lock
|
|
562
|
+
|
|
563
|
+
output/
|
synfire-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Copyright (c) Innatera. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This package may be downloaded, installed, and used to access the Synfire platform.
|
|
4
|
+
No permission is granted to copy, modify, redistribute, sublicense, or create
|
|
5
|
+
derivative works except as explicitly permitted by Innatera.
|