- Switch from unittest to pytest (test_gears.py, xfail for OCC helical extrusion) - Add visual regression tests (freecad.visual_tests): test_visual_projects.py, projekt_001 - Pixi: test/test-visual/test-visual-xvfb/create-references/clean-test, create-references-xvfb - GitHub: Pylint workflow on push, pull_request, workflow_dispatch; visual tests on Linux (xvfb) - GitHub: Update reference images workflow (workflow_dispatch) - setup-pixi v0.9.4, pixi v0.44.0, checkout v4 - .gitignore: artifacts/, .pytest_exitstatus Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
699 B
TOML
31 lines
699 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)",
|
|
]
|