Skip to content

Commit

Permalink
python: create pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kloetzl committed Feb 25, 2024
1 parent 7652243 commit 1431303
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/Readme.md
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
MIT License
15 changes: 15 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[tool.poetry]
name = "libdna"
version = "1.3"
description = "Essential Functions for DNA Manipulation"
authors = ["Fabian Klötzl <[email protected]>"]
license = "MIT"
readme = "Readme.md"

[tool.poetry.dependencies]
python = "^3.11"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 1431303

Please sign in to comment.