-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.21 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
[project]
name = "trackplot"
version = "0.5.8"
description = "The trackplot is a tool for visualizing various next-generation sequencing (NGS) data, including DNA-seq, RNA-seq, single-cell RNA-seq and full-length sequencing datasets. https://sashimi.readthedocs.io/"
authors = [
{ name = "ygidtu", email = "ygidtu@gmail.com" }
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"adjusttext>=1.3.0",
"cairocffi>=1.7.1",
"click>=8.2.1",
"click-option-group>=0.5.7",
"filetype>=1.2.0",
"flask>=3.1.1",
"hicmatrix>=17.2",
"loguru>=0.7.3",
"matplotlib>=3.10.3",
"numpy>=2.3.0",
"pandas>=2.3.0",
"pybigwig>=0.3.24",
"pysam>=0.23.3",
"requests>=2.32.4",
"scipy>=1.15.3",
"seaborn>=0.13.2",
"xmltodict>=0.15.0",
]
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
# 搜索目前目录下的trackplot和ui及其子文件夹
where = ["."]
include = ["trackplot*", "ui*"] # 通配符匹配所有子包
[tool.setuptools.package-data]
# 不限定父目录(等号前为父目录),包含其下匹配特定正则的文件
"*" = [
"pyproject.toml", "*"
]