-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2290 from mikedh/release/revolve
Release: Revolve Caps
- Loading branch information
Showing
29 changed files
with
829 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0", "wheel"] | |
[project] | ||
name = "trimesh" | ||
requires-python = ">=3.8" | ||
version = "4.4.9" | ||
version = "4.5.0" | ||
authors = [{name = "Michael Dawson-Haggerty", email = "[email protected]"}] | ||
license = {file = "LICENSE.md"} | ||
description = "Import, export, process, analyze and view triangular meshes." | ||
|
@@ -32,6 +32,9 @@ dependencies = ["numpy>=1.20"] | |
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.scripts] | ||
trimesh = "trimesh:__main__.main" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"trimesh", | ||
|
@@ -84,7 +87,6 @@ easy = [ | |
] | ||
|
||
recommend = [ | ||
"glooey", | ||
"sympy", | ||
"meshio", | ||
"pyglet<2", | ||
|
@@ -94,30 +96,36 @@ recommend = [ | |
# "python-fcl", # do collision checks # TODO : broken on numpy 2 | ||
"openctm", # load `CTM` compressed models | ||
"cascadio", # load `STEP` files | ||
|
||
] | ||
|
||
# this is the list of everything that is ever added anywhere | ||
# mostly useful for getting our test coverage up | ||
# stuff to run simple testing | ||
test = [ | ||
"pytest-cov", | ||
"pytest", | ||
"pyinstrument", | ||
"ruff", | ||
] | ||
|
||
# this is the list of everything that is ever added anywhere | ||
# mostly useful for getting our test coverage up but may not | ||
# be easy to install on all platforms and is only really | ||
# a good idea in our "cannonical docker images" | ||
test_more = [ | ||
"coveralls", | ||
"pyright", | ||
"ezdxf", | ||
"pytest", | ||
"pymeshlab; python_version<='3.11'", | ||
"pyinstrument", | ||
"pytest-beartype; python_version>='3.10'", | ||
"matplotlib", | ||
"ruff", | ||
"pytest-beartype; python_version>='3.10'" | ||
"pymeshlab", | ||
"triangle", | ||
] | ||
|
||
# interfaces.gmsh will be dropped Jan 2025 | ||
deprecated = ["gmsh==4.12.2"] | ||
|
||
# requires pip >= 21.2 | ||
# https://hynek.me/articles/python-recursive-optional-dependencies/ | ||
all = ["trimesh[easy,recommend,test,deprecated]"] | ||
all = ["trimesh[easy,recommend,test,test_more,deprecated]"] | ||
|
||
[tool.ruff] | ||
target-version = "py38" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.