-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
89 lines (77 loc) · 2.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=41", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "cellarium-ml"
authors = [
{ name="Yerdos Ordabayev", email="[email protected]" },
{ name="Mehrtash Babadi", email="[email protected]" },
]
description = "Machine learning library for single-cell data analysis"
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE.md"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"anndata",
"boltons",
"braceexpand",
"crick>=0.0.4",
"google-cloud-storage",
"jsonargparse[signatures]==4.27.7",
"lightning>=2.2.0",
"numpy<=1.26.4",
"pyro-ppl>=1.9.1",
"pytest",
"torch>=2.2.0",
"transformers",
]
dynamic = ["version"]
[project.optional-dependencies]
lint = ["ruff"]
mypy = ["mypy", "types-PyYAML"]
test = [
"pytest-xdist",
"tensorboard",
"torchvision",
]
docs = [
"nbsphinx",
"Pillow",
"seaborn>=0.13.0",
"sphinx",
"sphinx_rtd_theme",
"sphinx-copybutton",
]
dev = ["cellarium-ml[docs,lint,mypy,test]"]
[project.scripts]
cellarium-ml = "cellarium.ml.cli:main"
[project.urls]
"Homepage" = "https://cellarium-ai.github.io/cellarium-ml"
"Source Code" = "https://github.com/cellarium-ai/cellarium-ml"
"Bug Tracker" = "https://github.com/cellarium-ai/cellarium-ml/issues"
"Discussion Forum" = "https://github.com/cellarium-ai/cellarium-ml/discussions"
[tool.setuptools.packages.find]
include = ["cellarium.*"]
[tool.setuptools.package-data]
"cellarium.ml" = ["py.typed"]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.post{ccount}"
[tool.ruff]
line-length = 120
extend-include = ["*.ipynb"]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
ignore_missing_imports = true
explicit_package_bases = true
check_untyped_defs = true
warn_unreachable = true