-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.51 KB
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
[build-system]
requires = ["flit_core", "flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "locat"
dynamic = ['version']
description = "Locat identifies marker genes enriched within a compact subset of cells and depleted elsewhere"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Wes Lewis", email = "wes.lewis@yale.edu"},
{name = "Fabio Parisi", email = "fabio.parisi@pcmgf.com"},
{name = "Francesco Strino", email = "francesco.strino@pcmgf.com"},
{name = "Yuval Kluger", email = "yuval.kluger@yale.edu"},
]
maintainers = [
{name = "Wes Lewis", email = "wes.lewis@yale.edu"},
{name = "Fabio Parisi", email = "fabio.parisi@pcmgf.com"},
{name = "Francesco Strino", email = "francesco.strino@pcmgf.com"},
]
keywords = ["Locat", "Localized genes"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.10"
# Tensorflow-proability 0.25.0 is not compatible with jax 0.7 and later
dependencies = [
"scanpy",
"loguru",
"jax<0.7",
"tensorflow_probability",
]
[tool.flit.sdist]
exclude = [".gitignore"]
[tool.setuptools_scm]
write_to = "locat/_version.py"
[project.optional-dependencies]
dev = ["pytest", "flit_core", "flit_scm"]
[project.urls]
Documentation = "https://github.com/KlugerLab/Locat"
Repository = "https://github.com/KlugerLab/Locat"
"Bug Tracker" = "https://github.com/KlugerLab/Locat/issues"