Skip to content

Commit

Permalink
fix pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelahman committed Dec 26, 2024
1 parent 0a91c3c commit 71a0fb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ build-backend = "setuptools.build_meta"
[project]
name = "nature-sounds"
description = "A nature sounds player for the command-line"
long-description = "file: README.md"
long-description-content-type = "text/markdown"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
Expand All @@ -16,9 +14,5 @@ classifiers = [
]
dynamic = ["version"]

[tool.setuptools.commands]
build = "setup.BuildGoBinary"
install = "setup.PostInstallCommand"

[tool.setuptools_scm]

7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,9 @@ def run(self):

install.run(self)

setup()
setup(
cmdclass={
"build": BuildGoBinary,
"install": PostInstallCommand,
},
)

0 comments on commit 71a0fb6

Please sign in to comment.