-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.37 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "pysdfscad"
version = "0.1.0"
description = ""
authors = ["Alex Davies <traverse.da@gmail.com>"]
readme = "README.md"
packages = [
{ include = "pysdfscad" },
{ include = "pysdfscad_qtgui" },
]
include = ["pysdfscad/openscad.lark"]
[tool.poetry.dependencies]
#python = "^3.10"
python = ">=3.10,<3.12" #Required for pyinstaller
sdf = {git = "https://github.com/fogleman/sdf.git"}
lark = "^1.1.5"
loguru = "^0.6.0"
click = "^8.1.3"
pyqt5 = {version = "^5.15.7", optional = true}
qscintilla = {version = "^2.13.3", optional = true}
pyqtgraph = {version = "^0.13.1", optional = true}
pyopengl = {version = "^3.1.6", optional=true}
appdirs = "^1.4.4"
astor = "^0.8.1"
mkdocs-macros-plugin = "^0.7.0"
[tool.poetry.extras]
qtgui = ["PyQt5","qscintilla","pysdfscad_qtgui","pyqtgraph","pyopengl"]
#docs = ["Sphinx", "sphinx-rtd-theme",]
[tool.poetry.scripts]
pysdfscad = "pysdfscad.main:main"
pysdfscad_qtgui = { callable = "pysdfscad_qtgui.main:main", extras = ["qtgui"] }
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.12.0"
coverage = "^7.0.5"
nuitka = "^1.4.5"
ordered-set = "^4.1.0"
zstandard = "^0.19.0"
pyinstaller = "^5.8.0"
pyinstaller-hooks-contrib = "^2022.15"
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
mkdocs-material = "^9.0.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"