-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 992 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 992 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
32
33
34
35
36
37
38
39
40
[project]
authors = [
{name = "Philip Delorenzo", email = "git@deloarts.com"},
]
maintainers = [
{name = "Philip Delorenzo", email = "git@deloarts.com"},
]
keywords = [ "solidworks", "sldworks" ]
dependencies = [
"pywin32 (>=310,<311)",
]
description = "A python wrapper for the SolidWorks API."
name = "pyswx"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
version = "0.6.0"
[tool.poetry]
packages = [{include = "pyswx"}]
classifiers = [
"Operating System :: Microsoft :: Windows :: Windows 11",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Manufacturing",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.2.0"
pytest = "^8.3.5"
black = "^25.1.0"
pylint = "^3.3.7"
isort = "^6.0.1"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0.0,<3.0.0"]