-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
76 lines (70 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "flexynesis"
version = "0.2.14"
license = {file = "LICENSE"}
authors = [
{name = "Bora Uyar", email = "[email protected]"},
{name = "Taras Savchyn", email = "[email protected]"},
{name = "Ricardo Wurmus", email = "[email protected]" },
{name = "Ahmet Sarigun", email = "[email protected]"}
]
description = "A deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction."
readme = "README.md"
requires-python = ">=3.11,<3.12"
classifiers=[
"Programming Language :: Python :: 3.11",
]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"lightning",
"pyyaml",
"scikit-optimize",
"scipy",
"seaborn",
"torch",
"torchvision",
"tqdm",
"umap-learn",
"rich",
"captum",
"ipywidgets",
"torch_geometric",
"ipykernel",
"lifelines",
"papermill",
"scikit-survival",
"python-louvain",
"xgboost",
"pot",
"geomloss"
]
[project.scripts]
flexynesis = "flexynesis.__main__:main"
[project.urls]
homepage = "https://github.com/BIMSBbioinfo/flexynesis"
[project.optional-dependencies]
test = [
"pytest"
]
[tool.setuptools.packages.find]
include = ["flexynesis", "flexynesis.*"]
[tool.pytest.ini_options]
norecursedirs = [
".git",
".github",
"dist",
"build",
"docs",
]
addopts = [
"--strict-markers",
"--doctest-modules",
"--color=yes",
"--disable-pytest-warnings",
]
filterwarnings = "ignore::DeprecationWarning"