Skip to content

Commit

Permalink
Merge pull request #713 from biocommons/712-fix-dev-install
Browse files Browse the repository at this point in the history
fix(#712): This fixes the broken make develop install
  • Loading branch information
reece committed Dec 12, 2023
2 parents 48184e1 + 46f7e48 commit 2781a4b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
18 changes: 14 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,18 @@ keywords = [
"hgvs",
"variation"
]
dynamic = ["version"]
dynamic = ["version", "optional-dependencies"]

dependencies=[
"attrs >= 17.4.0", # https://github.com/biocommons/hgvs/issues/473
"biocommons.seqrepo >= 0.6.5",
"bioutils >= 0.4.0,<1.0",
"configparser >= 3.3.0",
"ipython",
"parsley",
"psycopg2",
"six",
]

[project.urls]
"Homepage" = "https://github.com/biocommons/hgvs"
Expand All @@ -40,11 +51,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
12 changes: 3 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
[metadata]
name = hgvs

[options]
zip_safe = True
include_package_data = True
packages = find_namespace:
package_dir =
=src
install_requires =
attrs >= 17.4.0 # https://github.com/biocommons/hgvs/issues/473
biocommons.seqrepo >= 0.6.5
bioutils >= 0.4.0,<1.0
configparser >= 3.3.0
ipython
parsley
psycopg2
six

[options.packages.find]
where = src
Expand Down

0 comments on commit 2781a4b

Please sign in to comment.