pyproject.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [project]
  2. name = "borgmatic"
  3. version = "2.0.7.dev0"
  4. authors = [
  5. { name="Dan Helfman", email="witten@torsion.org" },
  6. ]
  7. description = "Simple, configuration-driven backup software for servers and workstations"
  8. readme = "README.md"
  9. requires-python = ">=3.9"
  10. classifiers=[
  11. "Development Status :: 5 - Production/Stable",
  12. "Environment :: Console",
  13. "Intended Audience :: System Administrators",
  14. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  15. "Programming Language :: Python",
  16. "Topic :: Security :: Cryptography",
  17. "Topic :: System :: Archiving :: Backup",
  18. ]
  19. dependencies = [
  20. "jsonschema",
  21. "packaging",
  22. "requests",
  23. "ruamel.yaml>0.15.0",
  24. ]
  25. [project.scripts]
  26. borgmatic = "borgmatic.commands.borgmatic:main"
  27. generate-borgmatic-config = "borgmatic.commands.generate_config:main"
  28. validate-borgmatic-config = "borgmatic.commands.validate_config:main"
  29. [project.optional-dependencies]
  30. Apprise = ["apprise"]
  31. [project.urls]
  32. Homepage = "https://torsion.org/borgmatic"
  33. [build-system]
  34. requires = ["setuptools>=61.0"]
  35. build-backend = "setuptools.build_meta"
  36. [tool.setuptools.packages.find]
  37. include = ["borgmatic*"]
  38. namespaces = false
  39. [tool.black]
  40. line-length = 100
  41. skip-string-normalization = true
  42. [tool.pytest.ini_options]
  43. testpaths = "tests"
  44. addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --no-cov-on-fail --cov-fail-under=100 --ignore=tests/end-to-end"
  45. [tool.isort]
  46. profile = "black"
  47. known_first_party = "borgmatic"
  48. line_length = 100
  49. skip = ".tox"
  50. [tool.codespell]
  51. skip = ".git,.tox,build"