A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
834 B

  1. [project]
  2. name = "copyvios"
  3. version = "1.0.dev0"
  4. authors = [
  5. {name = "Ben Kurtovic", email = "ben@benkurtovic.com"},
  6. ]
  7. description = "A copyright violation detector web tool for Wikipedia articles"
  8. readme = "README.md"
  9. requires-python = ">=3.11"
  10. dependencies = [
  11. "earwigbot[sql,copyvios] >= 0.4",
  12. "mwparserfromhell >= 0.6",
  13. "flask >= 3.0",
  14. "requests >= 2.32.3",
  15. "pydantic >= 2.9.2",
  16. "SQLAlchemy >= 2.0.32",
  17. "mwoauth >= 0.4.0",
  18. ]
  19. [project.urls]
  20. Homepage = "https://github.com/earwig/copyvios"
  21. Issues = "https://github.com/earwig/copyvios/issues"
  22. [build-system]
  23. requires = ["setuptools>=61.0"]
  24. build-backend = "setuptools.build_meta"
  25. [tool.pyright]
  26. pythonVersion = "3.11"
  27. venvPath = "."
  28. venv = "venv"
  29. [tool.ruff]
  30. target-version = "py311"
  31. [tool.ruff.lint]
  32. select = ["E4", "E7", "E9", "F", "I", "UP"]