-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1023 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "mapseq-processing"
version = "1.0.0"
description = "Data processing for MAPseq"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "BSD-3-Clause"
license-files = ["LICEN[CS]E*"]
authors = [
{ name="John Hover", email="hover@cshl.edu" },
]
requires-python = ">= 3.9"
dependencies = [
"pandas",
"pyarrow",
"numpy",
"scikit-learn",
"matplotlib",
"seaborn",
"biopython",
"scipy",
"fastcluster",
"openpyxl",
"bowtie",
"bowtie2",
"natsort",
"paramiko",
"h5py",
"dask",
"networkx",
"mergedeep",
]
[tool.setuptools.packages.find]
include = ["mapseq*"]
[project.scripts]
process_fastq_pairs = "mapseq.cli:process_fastq_pairs"
[project.urls]
Homepage = "https://github.com/ZadorLaboratory/mapseq-processing"
Issues = "https://github.com/ZadorLaboratory/mapseq-processing/issues"