-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sketch_bridge"
version = "0.1.0"
description = "A tool for transferring sketches between CAD systems"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "SketchBridge Contributors"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Computer Aided Design (CAD)",
]
dependencies = [
"PySide6>=6.0",
"morphe-sketch",
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
]
build = [
"pyinstaller>=6.0",
]
[project.scripts]
sketch-bridge = "sketch_bridge.app:main"
[project.gui-scripts]
sketch-bridge-gui = "sketch_bridge.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["sketch_bridge*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"]
ignore = ["E501"] # Line length handled separately