-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.42 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "cat-python"
version = "1.1.0"
description = "Cluster Alignment Tool (CAT)"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Alex Valentin Nielsen", email = "[email protected]"},
{name = "Martin Proks", email = "[email protected]"},
{name= "Ala Trusina", email = "[email protected]"}
]
maintainers = [
{name = "Martin Proks", email = "[email protected]"},
]
dependencies = [
"anndata",
"polars",
"pyarrow",
"plotly",
"rich",
"rich_argparse",
"xlsxwriter"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10"
]
[project.scripts]
catcli = "cat.cli:main"
[project.optional-dependencies]
dev = ["pre-commit"]
doc = [
"setuptools",
"sphinx>=4.0",
"myst-nb>=1.1",
"sphinx-book-theme>=1",
"sphinxcontrib-bibtex>=1"
]
[project.urls]
Documentation = "https://brickmanlabcat.readthedocs.io/"
Source = "https://github.com/brickmanlab/cat-python"
Homepage = "https://github.com/brickmanlab/cat-python"
[tool.ruff]
lint.ignore = ["E731"]
[tool.hatch.build.targets.wheel]
packages = ["src/cat"]