pyproject.toml 744 B

123456789101112131415161718192021222324252627282930
  1. [project]
  2. name = "lightglue"
  3. description = "LightGlue: Local Feature Matching at Light Speed"
  4. version = "0.0"
  5. authors = [
  6. {name = "Philipp Lindenberger"},
  7. {name = "Paul-Edouard Sarlin"},
  8. ]
  9. readme = "README.md"
  10. requires-python = ">=3.6"
  11. license = {file = "LICENSE"}
  12. classifiers = [
  13. "Programming Language :: Python :: 3",
  14. "License :: OSI Approved :: Apache Software License",
  15. "Operating System :: OS Independent",
  16. ]
  17. urls = {Repository = "https://github.com/cvg/LightGlue/"}
  18. dynamic = ["dependencies"]
  19. [project.optional-dependencies]
  20. dev = ["black==23.12.1", "flake8", "isort"]
  21. [tool.setuptools]
  22. packages = ["lightglue"]
  23. [tool.setuptools.dynamic]
  24. dependencies = {file = ["requirements.txt"]}
  25. [tool.isort]
  26. profile = "black"