-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
44 lines (39 loc) · 872 Bytes
/
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
[build-system]
requires = [
"setuptools >= 61.0",
"wheel",
"cython",
"pysam",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
name = "dysgu"
version = "1.7.0"
description = "Structural variant calling"
authors = [
{ name = "Kez Cleal", email = "[email protected]" }
]
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = [
"setuptools >= 61.0",
"cython",
"click >= 8.0",
"numpy",
"scipy",
"pandas",
"pysam >= 0.22",
"networkx >= 2.4",
"scikit-learn >= 0.22",
"sortedcontainers",
"lightgbm"
]
[project.urls]
Homepage = "https://github.com/kcleal/dysgu"
[project.scripts]
dysgu = "dysgu.main:cli"
[tool.setuptools]
packages = ["dysgu", "dysgu.tests", "dysgu.scikitbio", "dysgu.edlib", "dysgu.sortedintersect"]
[tool.setuptools.package-data]
"dysgu" = ["*.pxd", "*.pyx"]