73 lines
1.7 KiB
TOML
73 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "fluency-cad"
|
|
version = "2.0.0"
|
|
description = "Parametric CAD application with OpenCASCADE geometry kernel"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "Fluency CAD Team"}
|
|
]
|
|
keywords = ["cad", "parametric", "opencascade", "3d-modeling"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Scientific/Engineering :: CAD",
|
|
]
|
|
|
|
dependencies = [
|
|
"pygfx>=0.1.0",
|
|
"wgpu>=0.1.0",
|
|
"PySide6>=6.4.0",
|
|
"numpy>=1.24.0",
|
|
"scipy>=1.10.0",
|
|
"pillow>=10.0.0",
|
|
"python_solvespace>=3.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"black>=24.0",
|
|
"mypy>=1.8",
|
|
"ruff>=0.4.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
fluency-cad = "fluency.main:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/fluency-cad/fluency"
|
|
Documentation = "https://github.com/fluency-cad/fluency#readme"
|
|
Repository = "https://github.com/fluency-cad/fluency"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
fluency = ["py.typed", "*.pyi"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py310", "py311", "py312"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|