PyTorchEMD/pyproject.toml

37 lines
674 B
TOML
Raw Normal View History

2023-04-24 13:07:34 +00:00
[project]
name = "torchemd"
version = "1.0.0"
authors = [{ name = "Laurent Fainsin", email = "laurent@fainsin.bzh" }]
description = "PyTorch Wrapper for Point-cloud Earth-Mover-Distance (EMD)"
readme = "README.md"
requires-python = ">=3.9"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
2023-04-24 09:45:30 +00:00
[tool.ruff]
ignore-init-module-imports = true
select = ["E", "F", "I"]
line-length = 120
[tool.black]
exclude = '''
/(
\.git
\.venv
)/
'''
include = '\.pyi?$'
line-length = 120
target-version = ["py310"]
[tool.isort]
multi_line_output = 3
profile = "black"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true