A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
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.

87 lines
3.4 KiB

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