-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.41 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
[project]
name = "pyrobotstructural"
version = "0.1.0"
description = "Unofficial Python wrapper for Autodesk Robot Structural Analysis Professional"
readme = "README.md"
requires-python = ">=3.14"
license = {text = "MIT"}
authors = [
{name = "m-wolin"},
]
keywords = ["autodesk", "robot", "structural", "analysis", "FEM", "BIM", "robotom"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=2.4.2",
"pillow>=12.1.1",
"pythonnet>=3.1.0rc0",
"pywin32>=306; sys_platform == 'win32'",
]
[project.urls]
Homepage = "https://github.com/m-wolin/pyrobotstructural"
Repository = "https://github.com/m-wolin/pyrobotstructural"
Issues = "https://github.com/m-wolin/pyrobotstructural/issues"
Documentation = "https://pyrobotstructural.readthedocs.io"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pyrobotstructural"]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"ruff>=0.15.4",
]
docs = [
"sphinx>=8.0",
"myst-parser>=4.0",
"furo>=2024.8.6",
"sphinx-autodoc-typehints>=2.0",
]