Skip to content

Commit

Permalink
build: use version from source; remove obsolete option (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanls authored Feb 25, 2025
1 parent a3db6f3 commit 92cb665
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dynamic = ['version']
license = { file = 'LICENSE' }
name = 'tbp.monty'
readme = 'README.md'
requires-python = '>=3.7, <4'
requires-python = '>=3.8'

[project.optional-dependencies]
analysis = [
Expand Down Expand Up @@ -129,9 +129,6 @@ junit_family = 'xunit1'
"qt" = 'import quaternion as qt'
"mn" = 'import magnum as mn'

[tool.distutils.bdist_wheel]
universal = true

[tool.coverage.run]
branch = true
parallel = true
Expand Down Expand Up @@ -348,6 +345,9 @@ max-complexity = 18
[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.setuptools.dynamic]
version = { attr = "tbp.monty.__version__" }

[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
Expand Down

0 comments on commit 92cb665

Please sign in to comment.