-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (92 loc) · 2.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytorch_finufft"
description = "Pytorch bindings for the FINUFFT Library"
readme = "README.md"
authors = [
{name = "Matthew Meeker", email="[email protected]"},
{name = "Michael Eickenberg", email="[email protected]"},
{name = "Brian Ward", email="[email protected]"},
]
license = { text = "MIT" }
dependencies = ["finufft>= 2.2", "torch >= 2", "numpy", "scipy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/flatironinstitute/pytorch-finufft"
homepage = "https://github.com/flatironinstitute/pytorch-finufft"
[project.optional-dependencies]
dev = ["black", "mypy", "isort", "ruff", "pytest", "pytest-cov"]
cuda = ["cufinufft>=2.2.0"]
[tool.setuptools.dynamic]
version = { attr = "pytorch_finufft.__version__" }
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
"pytorch_finufft" = ["py.typed"]
[tool.black]
target-version = ["py39"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
profile = "black"
[tool.mypy]
python_version = 3.9
pretty = true
show_traceback = true
color_output = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
norecursedirs = [
"hooks",
"*.egg",
".eggs",
"dist",
"build",
"docs",
".tox",
".git",
"__pycache__",
]