-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.27 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sisana"
authors = [
{name = "Nolan Newman", email = "[email protected]"},
]
version = "0.0.7"
description = "A command line interface tool to reconstruct and analyze single sample networks."
readme = "README.md"
requires-python = ">=3.9.0"
keywords = ["transcription-factors", "gene-regulatory-network", "panda", "lioness"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"pandas",
"netZooPy",
"scikit-learn",
"scikit-survival",
"matplotlib",
"pathlib",
"gseapy",
"seaborn",
"adjustText",
"pyyaml",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sisana",
"sisana.docs",
"sisana.postprocessing",
"sisana.preprocessing",
"sisana.postprocessing.post",
"sisana.analyze_networks",
"sisana.analyze_networks.analyze",
"sisana.analyze_networks.genesets"]
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.scripts]
sisana = "sisana.sisana:cli"
[project.urls]
Repository = "https://github.com/newmanno/sisana"