Skip to content

Commit 46f7e48

Browse files
committed
fix(make test): move project dependencies into pyproject.toml
1 parent 1a4b265 commit 46f7e48

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,17 @@ keywords = [
3333
]
3434
dynamic = ["version", "optional-dependencies"]
3535

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+
]
46+
3647
[project.urls]
3748
"Homepage" = "https://github.com/biocommons/hgvs"
3849
"Bug Tracker" = "https://github.com/biocommons/hgvs/issues"

setup.cfg

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ include_package_data = True
77
packages = find_namespace:
88
package_dir =
99
=src
10-
install_requires =
11-
attrs >= 17.4.0 # https://github.com/biocommons/hgvs/issues/473
12-
biocommons.seqrepo >= 0.6.5
13-
bioutils >= 0.4.0,<1.0
14-
configparser >= 3.3.0
15-
ipython
16-
parsley
17-
psycopg2
18-
six
1910

2011
[options.packages.find]
2112
where = src

0 commit comments

Comments
 (0)