Skip to content

Commit 2781a4b

Browse files
authored
Merge pull request #713 from biocommons/712-fix-dev-install
fix(#712): This fixes the broken make develop install
2 parents 48184e1 + 46f7e48 commit 2781a4b

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

pyproject.toml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,18 @@ keywords = [
3131
"hgvs",
3232
"variation"
3333
]
34-
dynamic = ["version"]
34+
dynamic = ["version", "optional-dependencies"]
35+
36+
dependencies=[
37+
"attrs >= 17.4.0", # https://github.com/biocommons/hgvs/issues/473
38+
"biocommons.seqrepo >= 0.6.5",
39+
"bioutils >= 0.4.0,<1.0",
40+
"configparser >= 3.3.0",
41+
"ipython",
42+
"parsley",
43+
"psycopg2",
44+
"six",
45+
]
3546

3647
[project.urls]
3748
"Homepage" = "https://github.com/biocommons/hgvs"
@@ -40,11 +51,10 @@ dynamic = ["version"]
4051
[project.scripts]
4152
"hgvs-shell" = "hgvs.shell:shell"
4253

43-
4454
[build-system]
4555
requires = [
46-
"setuptools >= 65.3",
47-
"setuptools_scm[toml] ~= 7.0"
56+
"setuptools >= 69.0.2",
57+
"setuptools_scm[toml] >= 8.0"
4858
]
4959
build-backend = "setuptools.build_meta"
5060

setup.cfg

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1+
[metadata]
2+
name = hgvs
3+
14
[options]
25
zip_safe = True
36
include_package_data = True
47
packages = find_namespace:
58
package_dir =
69
=src
7-
install_requires =
8-
attrs >= 17.4.0 # https://github.com/biocommons/hgvs/issues/473
9-
biocommons.seqrepo >= 0.6.5
10-
bioutils >= 0.4.0,<1.0
11-
configparser >= 3.3.0
12-
ipython
13-
parsley
14-
psycopg2
15-
six
1610

1711
[options.packages.find]
1812
where = src

0 commit comments

Comments
 (0)