This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (81 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool]
[tool.poetry]
name = "layerview"
version = "0.1.6"
homepage = "https://github.com/majabojarska/LayerView"
description = "LayerView is a G-code visualizer and inspector."
authors = ["Maja Bojarska <majabojarska98@gmail.com>"]
readme = "README.rst"
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: MacOS",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Printing",
]
packages = [
{ include = "layerview" },
{ include = "tests", format = "sdist" },
]
include = ["layerview/app/pyuic/**/*.py"]
[tool.black]
line-length = 88
exclude = "layerview/app/pyuic"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
skip = "layerview/app/pyuic"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.poetry.scripts]
layerview = "layerview.cli:main"
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
Panda3D = "1.10.7"
PyQt5 = "^5.15.2"
numpy = "^1.22.4"
QPanda3D = "0.2.8"
Pillow = "^8.0.1"
[tool.poetry.dev-dependencies]
# General
bumpversion = { version = "^0.6.0", optional = false }
invoke = { version = "^1.7.1", optional = false }
# Test
coverage = { version = "^6.4.1", optional = false }
tox = { version = "^3.25.0", optional = false }
pytest = { version = "^7.1.2", optional = false }
pytest-runner = { version = "^5.2", optional = false }
# Lint
pylint = "^2.14.1"
# Format
isort = { version = "^5.10.1", optional = false }
black = { version = "^22.3.0", optional = false }
aiohttp = { version = "^3.7.2", optional = false }
aiohttp_cors = { version = "^0.7.0", optional = false }
# Docs
sphinx = { version = "^4.5.0", optional = false }
sphinx-rtd-theme = { version = "^0.5.0", optional = false }
sphinxcontrib-apidoc = { version = "^0.3.0", optional = false }
sphinx-autobuild = { version = "^2020.9.1", optional = false }
# Other
ipython = { version = "^7.19.0", optional = false }
vprof = { version = "^0.38", optional = false }
matplotlib = "^3.3.3"
scipy = "^1.6.0"
[build-system]
requires = ["poetry>=1.1.13,<2.0"]
build-backend = "poetry.masonry.api"