Skip to content

Commit

Permalink
fix(make test): move project dependencies into pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasprlic committed Dec 11, 2023
1 parent 1a4b265 commit 46f7e48
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ keywords = [
]
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"
"Bug Tracker" = "https://github.com/biocommons/hgvs/issues"
Expand Down
9 changes: 0 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,6 @@ 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 46f7e48

Please sign in to comment.