Skip to content

Commit

Permalink
fix(#712): This fixes the broken make develop install, making sure th…
Browse files Browse the repository at this point in the history
…ey are declared dynamic in pyproject.toml
  • Loading branch information
andreasprlic committed Dec 11, 2023
1 parent 48184e1 commit 1a4b265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ keywords = [
"hgvs",
"variation"
]
dynamic = ["version"]
dynamic = ["version", "optional-dependencies"]

[project.urls]
"Homepage" = "https://github.com/biocommons/hgvs"
Expand All @@ -40,11 +40,10 @@ dynamic = ["version"]
[project.scripts]
"hgvs-shell" = "hgvs.shell:shell"


[build-system]
requires = [
"setuptools >= 65.3",
"setuptools_scm[toml] ~= 7.0"
"setuptools >= 69.0.2",
"setuptools_scm[toml] >= 8.0"
]
build-backend = "setuptools.build_meta"

Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[metadata]
name = hgvs

[options]
zip_safe = True
include_package_data = True
Expand Down

0 comments on commit 1a4b265

Please sign in to comment.