wetrocks/pyproject.toml

86 lines
2.4 KiB
TOML

[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "wetrocks"
dynamic = ["version"]
authors = [
{name = "Jeff Moe", email = "moe@parrot.codes"},
]
description = "A single phase immersion cooled computer."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"3d models",
"3d",
"brep",
"build123d",
"cad",
"opencascade",
"python",
]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache-2.0 License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
# CAD dependencies
"pydantic",
"typing_extensions >= 4.4.0, <5",
"jupyter-console",
"build123d @ git+https://github.com/gumyr/build123d",
"CQ-editor @ git+https://github.com/jdegenstein/jmwright-CQ-Editor.git",
"ocp-vscode @ git+https://github.com/bernhard-42/vscode-ocp-cad-viewer",
"ocp-tessellate @ git+https://github.com/bernhard-42/ocp-tessellate",
# Known good git commits, should latest have issues
# "build123d @ git+https://github.com/gumyr/build123d#ec4171e9a1a622040305a6cd706f2141c50d6a40",
# "CQ-editor @ git+https://github.com/jdegenstein/jmwright-CQ-Editor.git#6fe767c0a434ee3134894c7c314eeecd2a41a313",
# "ocp-vscode @ git+https://github.com/bernhard-42/vscode-ocp-cad-viewer#f0924baa5e207af17cc8ba6b62fe7528bd5fea70",
# "ocp-tessellate @ git+https://github.com/bernhard-42/ocp-tessellate#aefe7ce0e3002b0f2ef8733c37b71ce3b29e3a70",
# Documentation dependencies
"polib",
"pycountry",
"requests",
"sphinx",
#"sphinxcontrib-exceltable",
"sphinxcontrib-excel-table",
"sphinxcontrib-markdown",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"sphinx-intl",
"sphinx-notfound-page",
"sphinx-rtd-theme",
]
[project.urls]
Homepage = "https://wetrocks.fyi"
Documentation = "https://wetrocks.fyi"
Repository = "https://spacecruft.org/deepcrayon/wetrocks"
Issues = "https://spacecruft.org/deepcrayon/wetrocks/issues"
Changelog = "https://spacecruft.org/deepcrayon/wetrocks/raw/branch/main/CHANGELOG.txt"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
write_to = "src/wetrocks/_version.py"
[project.scripts]
wetrocks = "wetrocks.wetrocks_assembly:main"
wetrocks-export = "wetrocks.wetrocks_export:main"