-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 859 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
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "geosink"
description = "Geodesic Sinkhorn with Chebyshev approximation"
requires-python = ">=3.8"
version = "0.1.0"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{name = "Guillaume Huguet"}
]
dependencies = [
"scipy",
"numpy",
]
keywords = [
"diffusion",
"optimal transport",
"heat",
"kernel",
"sinkhorn",
]
[project.optional-dependencies]
dev = [
"black",
"pylint",
"pytest",
"isort",
"scanpy",
"pygsp",
"pytest-memray",
]
graph = [
"scanpy",
"pygsp",
]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools_scm]
[tool.black]
line-length = 80
target-version = ["py38"]