forked from GraphingLib/GraphingLibStyleEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 734 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 734 Bytes
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
[tool.poetry]
name = "glse"
version = "1.1.0"
description = "A GUI editor for GraphingLib style files"
license = "MIT"
authors = [
"Gustave Coulombe <magikgus@gmail.com>",
"Yannick Lapointe <yannicklapointe77@gmail.com>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
requests = "^2.31.0"
setuptools-scm = "^8.0.4"
qt-material = "^2.14"
pyside6 = "^6.7.1"
graphinglib = {git = "https://github.com/GraphingLib/GraphingLib.git"}
[tool.poetry.scripts]
glse = "glse.cli:main"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.3.7"
pydata-sphinx-theme = "^0.15.3"
sphinx-favicon = "^1.0.1"
sphinx-design = "^0.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"