diff --git a/python/Readme.md b/python/Readme.md new file mode 100644 index 0000000..76ca7d1 --- /dev/null +++ b/python/Readme.md @@ -0,0 +1,12 @@ +# libdna - Python API + +The aim of this project is to unify functionality commonly found in bioinformatics projects working on DNA. DNA, as opposed to RNA or amino acid sequences, are very long strings. Even bacterial genomes are easily a few megabyte in size. Thus, for efficient analysis the length has to be taken into account in the design of routines. + +This is the Python API with similar functionality as the C funtions. Support is experimental and may change in the future. + + + +# License + +Copyright © 2018 - 2024 Fabian Klötzl +MIT License diff --git a/python/pyproject.toml b/python/pyproject.toml new file mode 100644 index 0000000..af648eb --- /dev/null +++ b/python/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "libdna" +version = "1.3" +description = "Essential Functions for DNA Manipulation" +authors = ["Fabian Klötzl "] +license = "MIT" +readme = "Readme.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"