forked from musescore/MuseScore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
18 lines (17 loc) · 736 Bytes
/
pyproject.toml
File metadata and controls
18 lines (17 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
description = "Python scripts for MuseScore Studio development."
readme = "https://github.com/musescore/MuseScore/wiki/Running-Python-scripts"
requires-python = ">=3.9"
dependencies = [
"requests>=2.32.3",
"markdown>=3.6",
]
# Show files that use these dependencies, e.g. for requests: rg -lt py "import requests"
# Useful PDM commands:
# --------------------
# pdm install Install all dependencies into a virtual environment (venv).
# pdm run <script> Run a Python script with access to venv.
# pdm add <package> Add new dependency on a PyPi package.
# pdm venv remove in-project Remove the venv (e.g. to test installation from scratch).
[tool.pdm]
distribution = false