generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (54 loc) · 1.37 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "grnndata"
version = "1.1.4"
description = "Awesome gene regulatory network enhanced anndata"
authors = [
{name = "jkobject", email = "[email protected]"}
]
readme = "README.md"
license = "MIT"
keywords = ["scRNAseq", "gene regulatory networks", "anndata", "scPRINT"]
requires-python = ">=3.10"
dependencies = [
"anndata>=0.8.0",
"scipy>=1.7.0",
"networkx>=2.6.0",
"gseapy>=1.0.0",
"scikit-learn>=1.0.0",
"numpy>=1.21.0",
"leidenalg>=0.8.0",
"louvain>=0.8.0",
"natsort>=7.1.0",
"powerlaw>=1.5.0",
"pyvis>=0.1.9",
"d3graph>=0.2.0",
"scanpy>=1.10.0",
"numba>=0.56.0", # This version supports Python 3.10
"setuptools>=58.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"coverage>=7.3.2",
"ruff>=0.6.4",
"pytest-cov>=4.1.0",
"gitchangelog>=3.0.4",
"mkdocs>=1.5.3",
"mkdocs-git-revision-date-localized-plugin>=1.0.0",
"mkdocstrings>=0.22.0",
"mkdocs-git-authors-plugin>=0.4.0",
"mkdocs-jupyter>=0.2.0",
"mkdocstrings-python>=0.10.0"
]
[project.urls]
repository = "https://github.com/cantinilab/GRnnData"
[project.scripts]
grnndata = "grnndata.__main__:main"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501", "E203", "E266", "E265", "F401", "F403"]