-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (51 loc) · 1.16 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "paddle_harmonics"
version = "0.1.0"
description = "A differentiable spherical harmonic transform for PaddlePaddle."
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "Modified BSD"}
maintainers = [
{name = "author", email = "[email protected]"}
]
classifiers=[
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"
]
keywords = [
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"tensorly",
]
[project.optional-dependencies]
all = [
]
utils = [
]
tests = [
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/NVIDIA/torch-harmonics"
"Repository" = "https://github.com/NVIDIA/torch-harmonics"
"Bug Tracker" = "https://github.com/NVIDIA/torch-harmonics"
[tool.black]
line-length = 100
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["paddle_harmonics*"]
[tool.setuptools_scm]
[tool.ruff]
line-length = 88
ignore = ["E501", "E741", "E731"]
extend-exclude = [
]
[tool.isort]
profile = "black"