Skip to content

Commit

Permalink
Add build and setuptools-scm to Pipfile (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt authored Oct 24, 2024
1 parent 5a00d6d commit 15c2881
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ url = "https://pypi.org/simple"
verify_ssl = true

[packages]
pyperclip = ">=1.6"
setuptools = ">=34.4"
wcwidth = ">=0.1.7"
pyperclip = "*"
setuptools = "*"
wcwidth = "*"

[dev-packages]
build = "*"
cmd2 = { editable = true, path = "." }
cmd2_ext_test = { editable = true, path = "plugins/ext_test" }
codecov = "*"
Expand All @@ -22,6 +23,7 @@ pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
ruff = "*"
setuptools-scm = "*"
sphinx = "*"
sphinx-autobuild = "*"
sphinx-rtd-theme = "*"
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
requires = ["build", "setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"

[tool.doc8]
ignore-path = [
Expand Down Expand Up @@ -30,6 +31,7 @@ disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
exclude = [
"^build/", # .build directory
"^docs/", # docs directory
"^examples/", # examples directory
"^plugins/*", # plugins directory
Expand Down

0 comments on commit 15c2881

Please sign in to comment.