Skip to content

Commit

Permalink
configure setuptools package (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Apr 2, 2024
1 parent becbb73 commit c4a5f21
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 14 deletions.
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ datamodel-code-generator = "*"
requests = "*"
responses = "*"
typer = {extras = ["all"], version = "*"}
setuptools = "*"
build = "*"

[dev-packages]
debugpy = "*"
Expand Down
66 changes: 52 additions & 14 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "autopvs1"
version = "0.1.0"
authors = [
{name = "Dzmitry Hramyka", email = "[email protected]"},
]
description = "Automated prediction of the PVS1 ACMG/AMP variant classification"
readme = "README.md"
keywords = ["variant classification", "ACMG"]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/bihealth/autopvs1"
Documentation = "https://autopvs1.readthedocs.io/en/latest"

0 comments on commit c4a5f21

Please sign in to comment.