-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 1.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "seismic-rna"
authors = [
{name="Matty Allan"},
{name="Scott Grote"},
{name="Justin Aruda"},
{name="Yves Martin"},
{name="Alberic de Lajarte"},
]
description = "Structure Ensemble Inference by Sequencing, Mutation Identification, and Clustering of RNA (SEISMIC-RNA)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0-only"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"brotli >=1.0",
"click >=8.1",
"fastqsplitter >=1.2",
"kaleido >=0.2.1",
"networkx >=3.4",
"numpy >=1.26,<1.27",
"numba >=0.60",
"pandas >=2.2",
"plotly >=5.23",
"pyyaml >=6.0",
"scipy >=1.13",
"jinja2 >=3.0"
]
dynamic = ["version"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["src/seismicrna"]
extensions = [
{module = "seismicrna.relate.c.relate", sources = ["src/seismicrna/relate/c/relatemodule.c"]}
]
[tool.hatch.version]
path = "src/seismicrna/core/version.py"
[project.scripts]
seismic = "seismicrna.main:cli"
[project.urls]
"Homepage" = "https://github.com/rouskinlab/seismic-rna"
"Bug Tracker" = "https://github.com/rouskinlab/seismic-rna/issues"