-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 933 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
[project]
name = "hugo-unifier"
version = "0.3.2"
description = "Python package that can unify gene symbols across datasets based on the HUGO database."
readme = "README.md"
authors = [
{ name = "Nico Trummer", email = "nictru32@gmail.com" }
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"anndata>=0.11.4",
"networkx>=3.4.2",
"requests>=2.32.3",
"rich-click>=1.8.8",
]
[project.scripts]
hugo-unifier = "hugo_unifier.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.5",
"ruff>=0.11.4",
"scanpy>=1.11.1",
]