-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "neoscore"
version = "0.1.15"
description = "A graphical musical notation library"
authors = ["Andrew Yoon <andrew@nothing-to-say.org>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://neoscore.org"
repository = "https://github.com/DigiScore/neoscore"
classifiers = ["Topic :: Multimedia :: Graphics"]
packages = [
{ include = "neoscore" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/DigiScore/neoscore/issues"
[tool.poetry.dependencies]
python = "^3.7"
PyQt5 = "^5.15.6"
# Pin pyqt5-qt5 because later versions are missing wheels
pyqt5-qt5 = "5.15.2"
img2pdf = "0.4.4"
sortedcontainers = "2.4.0"
typing_extensions = "^4"
"backports.cached-property" = "1.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
pytest-xdist = "^2.5"
Sphinx="^4.5"
sphinx-rtd-theme = "1.0.0"
beautifulsoup4 = "^4.11.1"
lxml = "^4.8.0"
pre-commit = "^2.20.0"
pyyaml = "^6.0.1"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"