-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "tnatlas"
description = "Find transposon integrations in reads and align them to genomes."
readme = "README.md"
keywords = ["bioinformatics", "alignment", "genetics", "transposon", "scientific"]
authors = [
{name = "Lewis Grozinger", email = "lewis.grozinger@cnb.csic.es"},
{name = "Ana Mariya Anhel", email = "a.valdes@liverpool.ac.uk"},
{name = "Lorea Alejaldre", email = "lorea.alejaldre@cnb.csic.es"},
{name = "Angel Goni Moreno", email = "angel.goni@cnb.csic.es"},
]
maintainers = [
{name = "Lewis Grozinger", email = "lewis.grozinger@cnb.csic.es"},
]
version = "0.0.3"
license = "MIT"
requires-python = ">= 3.8"
dependencies = [
"biopython>1.8",
"numpy>2.2",
"pandas",
"openpyxl",
"psutil",
]
[project.scripts]
tnfind = "tnatlas.cli:main"
tnmeta = "tnatlas.meta:main"
[tool.setuptools]
include-package-data = true