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.
 
 
 
 
 

40 lines
880 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. "flask-mako >= 0.4",
  15. "mako >= 1.3.5",
  16. "requests >= 2.32.3",
  17. "pydantic >= 2.9.2",
  18. "SQLAlchemy >= 2.0.32",
  19. "mwoauth >= 0.4.0",
  20. ]
  21. [project.urls]
  22. Homepage = "https://github.com/earwig/copyvios"
  23. Issues = "https://github.com/earwig/copyvios/issues"
  24. [build-system]
  25. requires = ["setuptools>=61.0"]
  26. build-backend = "setuptools.build_meta"
  27. [tool.pyright]
  28. pythonVersion = "3.11"
  29. venvPath = "."
  30. venv = "venv"
  31. [tool.ruff]
  32. target-version = "py311"
  33. [tool.ruff.lint]
  34. select = ["E4", "E7", "E9", "F", "I", "UP"]