- README: Liberapay entfernt, Pixi-Commands aufgelistet - projekt_001 -> projekt001 (Umbenennung) - projekt002: zweiter Visual-Test mit 4 Ansichten (metafile.yaml, README) - pyproject.toml: filterwarnings für SWIG/FreeCAD DeprecationWarnings - .github: lint mit || true (schlägt nie fehl) Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
778 B
TOML
34 lines
778 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "freecad.gears"
|
|
dynamic = ["version"]
|
|
description = "gears for FreeCAD"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
maintainers = [
|
|
{name = "looooo", email = "sppedflyer@gmail.com"},
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = ["numpy", "scipy", "sympy"]
|
|
|
|
[project.urls]
|
|
source = "https://github.com/looooo/freecad.gears"
|
|
|
|
[tool.setuptools]
|
|
packages = ["freecad", "freecad.gears", "pygears"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "pygears.__version__"}
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"visual: visual regression tests (need display or xvfb)",
|
|
]
|
|
filterwarnings = [
|
|
"ignore:builtin type.*__module__:DeprecationWarning",
|
|
]
|