Skip to content

Commit

Permalink
pyproject: fix version number (use setuptools_scm)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmecher committed Apr 19, 2024
1 parent 51c8675 commit cb1eaf0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ requires = [
"cmake>=3.12",
"pybind11",
"setuptools>=42",
"setuptools_scm[toml]>=6.3",
"wheel",
]
build-backend = "setuptools.build_meta"

[project]
name='tuber'
description='Serve Python (or C++) objects across a LAN using something like JSON-RPC'
version='0.10'
authors=[
{name="Graeme Smecher", email="[email protected]"},
]
Expand All @@ -21,9 +21,12 @@ classifiers=[
"Operating System :: OS Independent",
]
license = {file="LICENSE"}
dynamic = ["version"]

[options]
package_dir={tuber="py"}

[tool.setuptools_scm]

[tool.black]
line-length = 120

0 comments on commit cb1eaf0

Please sign in to comment.