-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (63 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (63 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plotnado"
authors = [{ name = "Alastair Smith", email = "alastair.smith@ndcls.ox.ac.uk" }]
description = "A simple plotting library for making genomic tracks"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "GPL-3.0-or-later" }
version = "0.3.1"
dynamic = ["dependencies"]
keywords = ["genomics", "bioinformatics", "plotting", "genome-browser", "tracks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
scripts = { "plotnado" = "plotnado.cli.cli:main" }
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
cooler = ["cooler", "capcruncher"]
quantnado = ["quantnado>=0.4.8"]
toml = ["tomli; python_version < '3.11'", "tomli-w"]
notebook = ["ipywidgets>=8"]
dev = ["pytest", "pytest-cov", "pytest-mock", "pytest-assume", "pre-commit", "ipywidgets>=8"]
docs = [
"jupyter>=1.1.1",
"ipykernel>=6.29.0",
"tomli-w",
]
all = [
"cooler",
"capcruncher",
"quantnado>=0.4.8",
"tomli; python_version < '3.11'",
"tomli-w",
"ipywidgets>=8",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-assume",
"pre-commit",
"jupyter>=1.1.1",
"ipykernel>=6.29.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["plotnado*"]
[tool.setuptools.package-data]
plotnado = ["data/gene_bed_files/*", "data/*.bed", "py.typed"]
[project.urls]
Homepage = "https://github.com/alsmith151/plotnado"
Repository = "https://github.com/alsmith151/plotnado"
"Bug Tracker" = "https://github.com/alsmith151/plotnado/issues"
Documentation = "https://github.com/alsmith151/plotnado"