A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

85 řádky
3.4 KiB

  1. #! /usr/bin/env python
  2. # Copyright (C) 2009-2024 Ben Kurtovic <ben.kurtovic@gmail.com>
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining a copy
  5. # of this software and associated documentation files (the "Software"), to deal
  6. # in the Software without restriction, including without limitation the rights
  7. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. # copies of the Software, and to permit persons to whom the Software is
  9. # furnished to do so, subject to the following conditions:
  10. #
  11. # The above copyright notice and this permission notice shall be included in
  12. # all copies or substantial portions of the Software.
  13. #
  14. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. # SOFTWARE.
  21. from setuptools import find_packages, setup
  22. from earwigbot import __version__
  23. required_deps = [
  24. "PyYAML >= 5.4.1", # Parsing config files
  25. "mwparserfromhell >= 0.6", # Parsing wikicode for manipulation
  26. "requests >= 2.25.1", # Wiki API requests
  27. "requests_oauthlib >= 1.3.0", # API authentication via OAuth
  28. ]
  29. extra_deps = {
  30. "crypto": [
  31. "cryptography >= 3.4.7", # Storing bot passwords + keys in the config file
  32. ],
  33. "sql": [
  34. "pymysql >= 1.1.0", # Interfacing with MediaWiki databases
  35. ],
  36. "copyvios": [
  37. "beautifulsoup4 >= 4.9.3", # Parsing/scraping HTML
  38. "charset_normalizer >= 3.3.2", # Encoding detection for BeautifulSoup
  39. "lxml >= 4.6.3", # Faster parser for BeautifulSoup
  40. "nltk >= 3.6.1", # Parsing sentences to split article content
  41. "pdfminer >= 20191125", # Extracting text from PDF files
  42. "tldextract >= 3.1.0", # Getting domains for the multithreaded workers
  43. ],
  44. "time": [
  45. "pytz >= 2021.1", # Handling timezones for the !time IRC command
  46. ],
  47. }
  48. dependencies = required_deps + sum(extra_deps.values(), [])
  49. with open("README.rst") as fp:
  50. long_docs = fp.read()
  51. setup(
  52. name="earwigbot",
  53. packages=find_packages(exclude=("tests",)),
  54. entry_points={"console_scripts": ["earwigbot = earwigbot.util:main"]},
  55. install_requires=dependencies,
  56. test_suite="tests",
  57. version=__version__,
  58. author="Ben Kurtovic",
  59. author_email="ben.kurtovic@gmail.com",
  60. url="https://github.com/earwig/earwigbot",
  61. description="EarwigBot is a Python robot that edits Wikipedia and interacts with people over IRC.",
  62. long_description=long_docs,
  63. download_url=f"https://github.com/earwig/earwigbot/tarball/v{__version__}",
  64. keywords="earwig earwigbot irc wikipedia wiki mediawiki",
  65. license="MIT License",
  66. classifiers=[
  67. "Development Status :: 3 - Alpha",
  68. "Environment :: Console",
  69. "Intended Audience :: Developers",
  70. "License :: OSI Approved :: MIT License",
  71. "Natural Language :: English",
  72. "Operating System :: OS Independent",
  73. "Programming Language :: Python :: 3",
  74. "Topic :: Communications :: Chat :: Internet Relay Chat",
  75. "Topic :: Internet :: WWW/HTTP",
  76. ],
  77. )