-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.19 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "swfilefixer"
version = "0.3.0"
description = "Scanner and repair workbench for SolidWorks file-reference, ID, configuration and Toolbox integrity"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Ken Mantle" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
]
license = { file = "LICENSE" }
# swformat is imported via sys.path bootstrap (see src/swfilefixer/_swformat_bootstrap.py).
# There is no PyPI wheel — the library is a local path at D:/Dev/SWFormat/src.
# Override with the SWFILEFIXER_SWFORMAT_SRC env var if it lives elsewhere.
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8"]
# Enables .xlsx export of the Findings list and the Repair plan. Without
# it both still export .csv (stdlib only), which Excel opens natively —
# the format degrades, the feature does not.
xlsx = ["openpyxl>=3.1"]
[project.scripts]
swfilefixer = "swfilefixer.cli:main"
[tool.setuptools.packages.find]
where = ["src"]