-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 961 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
54
55
56
[build-system]
requires = [
"meson-python>=0.14.0",
"wheel",
"cython",
"pysam",
"numpy",
]
build-backend = "mesonpy"
[project]
name = "dysgu"
version = "1.8.9"
description = "Structural variant calling"
authors = [
{ name = "Kez Cleal", email = "clealk@cardiff.ac.uk" }
]
license = "MIT"
license-files = [
"LICENSE.md",
]
requires-python = ">=3.9"
dependencies = [
"cython",
"click >= 8.0",
"numpy",
"scipy",
"pandas",
"pysam >= 0.23.3",
"networkx >= 2.4",
"scikit-learn >= 0.22",
"sortedcontainers",
"superintervals >= 0.3.0",
"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.gfftool"
]
[tool.setuptools.package-data]
"dysgu" = ["*.pxd", "*.pyx", "LICENSE.md"]
[tool.meson-python.args]
setup = []