Tools setup
This commit is contained in:
parent
7ea6a18fc0
commit
a8b3ab2b24
5 changed files with 1912 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.venv
|
||||
.virtual_documents
|
||||
.ipynb_checkpoints
|
127
main.ipynb
Normal file
127
main.ipynb
Normal file
File diff suppressed because one or more lines are too long
5
mise.toml
Normal file
5
mise.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[tools]
|
||||
python = "3.13.2"
|
||||
|
||||
[env]
|
||||
_.python.venv = { path = ".venv", create = true, uv_create_args = ['--seed'] }
|
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[project]
|
||||
name = "finesse-simulation-04"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = [{ name = "linarphy", email = "augustin.demagny@42l.fr" }]
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"basedpyright>=1.27.1",
|
||||
"finesse>=3.0a31",
|
||||
"finesse-virgo>=1.0.9",
|
||||
"jupyter-lsp>=2.2.5",
|
||||
"jupyterlab>=4.3.5",
|
||||
"jupyterlab-code-formatter>=3.0.2",
|
||||
"jupyterlab-lsp>=5.1.0",
|
||||
"ruff>=0.9.6",
|
||||
]
|
Loading…
Reference in a new issue