-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (32 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
33 lines (32 loc) · 857 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "anianns"
version = "0.5.0"
description = "A Python package for annotating large tandem repeats"
authors = [
{ name="Alex Sweeten", email="alex.sweeten@nih.gov" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["genomics", "bioinformatics", "repeatmasker", "tandem repeat"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"pyGenomeTracks",
"pysam",
"setproctitle",
"numpy",
"polars",
"mmh3",
"numba",
]
[project.optional-dependencies]
moddotplot = ["moddotplot"]
dev = ["black", "jupyter", "ipykernel", "pytest", "biopython"]
[project.scripts]
anianns = "anianns.__main__:main"
anianns_kmer_db = "anianns.build_kmer_db:main"