-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.66 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "LongBarcodeQC"
version = "1.0.1"
description = "Analyze long-read barcodes and generate a summary report"
authors = [
{name="Zach Goode", email="goodez@ohsu.edu"}
]
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"bioinformatics",
"nanopore",
"long-read sequencing",
"barcode",
"quality control",
"plasmid",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
]
dependencies = [
"pandas >= 2.1.1",
"parasail >= 1.3.4",
"matplotlib >= 3.8.4",
"jinja2 >= 3.1.4",
"seaborn >= 0.13.2",
"pyarrow >= 14.0",
"tqdm >= 4.66",
"cutadapt >= 5.2"
]
readme = "README.md"
[project.urls]
Homepage = "https://github.com/ArpiarSaundersLab/LongBarcodeQC"
Documentation = "https://arpiarsaunderslab.github.io/LongBarcodeQC/"
Repository = "https://github.com/ArpiarSaundersLab/LongBarcodeQC"
Issues = "https://github.com/ArpiarSaundersLab/LongBarcodeQC/issues"
[tool.setuptools]
packages = ["longbarcodeqc"]
[project.scripts]
lbqc = "longbarcodeqc.main:main"
[tool.setuptools.package-data]
"longbarcodeqc" = ["plasmids/**", "template/**", "barcodes/**"]