pyproject.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [project]
  2. name = "borgmatic"
  3. version = "1.9.2.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.8"
  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. "colorama>=0.4.1,<0.5",
  21. "jsonschema",
  22. "packaging",
  23. "requests",
  24. "ruamel.yaml>0.15.0",
  25. ]
  26. [project.scripts]
  27. borgmatic = "borgmatic.commands.borgmatic:main"
  28. generate-borgmatic-config = "borgmatic.commands.generate_config:main"
  29. validate-borgmatic-config = "borgmatic.commands.validate_config:main"
  30. [project.optional-dependencies]
  31. Apprise = ["apprise"]
  32. [project.urls]
  33. Homepage = "https://torsion.org/borgmatic"
  34. [build-system]
  35. requires = ["setuptools>=61.0"]
  36. build-backend = "setuptools.build_meta"
  37. [tool.setuptools.packages.find]
  38. include = ["borgmatic*"]
  39. namespaces = false
  40. [tool.black]
  41. line-length = 100
  42. skip-string-normalization = true
  43. [tool.pytest.ini_options]
  44. testpaths = "tests"
  45. addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end"
  46. [tool.isort]
  47. profile = "black"
  48. known_first_party = "borgmatic"
  49. line_length = 100
  50. skip = ".tox"
  51. [tool.codespell]
  52. skip = ".git,.tox,build"