Skip to content

Commit

Permalink
Fix pyproject.toml to have setuptools_scm again (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha authored Mar 29, 2024
1 parent ab58416 commit 64b7d31
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
# enables setuptools_scm to provide the dynamic version

[tool.setuptools.package-data]
"modeStreaming" = ["py.typed"]

Expand All @@ -10,13 +17,19 @@ universal = true

[project]
name = "mode-streaming"
version = "0.3.5"
dynamic = [
"version",
]
description = "AsyncIO Service-based programming"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["asyncio", "service", "bootsteps", "graph", "coroutine"]
authors = [
{ name = "Faust Streaming", email = "[email protected]" },
{ name = "Ask Solem Hoel", email= "[email protected]" },
]

maintainers = [
{ name = "William Barnhart", email = "[email protected]" },
]
classifiers = [
"Framework :: AsyncIO",
Expand Down

0 comments on commit 64b7d31

Please sign in to comment.