-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
45 lines (40 loc) · 1.14 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tsbrowse"
authors = [
{name = "Tskit Developers", email = "admin@tskit.dev"},
]
description = "Webapp to view and visualise tskit ARGs"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"click",
"daiquiri",
"panel>=1.5.2",
"hvplot",
"datashader>=0.16.3",
"tskit",
"tszip",
]
dynamic = ["version"]
keywords = ["tree sequence", "ancestral recombination graph", "tskit", "quality control"]
[project.urls]
"Bug Tracker" = "https://github.com/tskit-dev/tsbrowse/issues"
"Source Code" = "https://github.com/tskit-dev/tsbrowse"
Homepage = "https://tskit.dev/tsbrowse/"
[tool.setuptools]
packages = ["tsbrowse", "tsbrowse.pages"]
[tool.setuptools_scm]
write_to = "tsbrowse/_version.py"
[tool.pytest]
testpaths = ["tests"]