forked from geometric-kernels/GeometricKernels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.46 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
54
55
56
57
58
59
60
61
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "geometric_kernels"
authors = [
{name = "The GeometricKernels Contributors", email = "geometric-kernels@googlegroups.com"},
]
description="A Python Package offering geometric kernels in NumPy, TensorFlow, PyTorch, and Jax."
readme = "README.md"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords=[
"geometric-kernels",
]
requires-python = ">=3.8"
dependencies = [
"backends>=1.5.4",
"einops",
"geomstats",
"numpy>=1.16",
"opt-einsum",
"plum-dispatch>=2.2.0,<2.5.6",
"potpourri3d",
"robust_laplacian",
"scipy>=1.3",
"spherical-harmonics-basis",
"sympy~=1.13",
]
version="0.2.3"
[project.urls]
Documentation = "https://geometric-kernels.github.io/"
Source = "https://github.com/geometric-kernels/GeometricKernels"
[tool.isort]
profile = "black"
skip_glob = [
"geometric_kernels/__init__.py",
]
known_third_party = [
"lab",
]
[tool.mypy]
ignore_missing_imports = true
strict_optional = false
allow_redefinition = true
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']