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.

89 lines
3.5 KiB

  1. #! /usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Copyright (C) 2009-2019 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 >= 3.12", # Parsing config files
  27. "mwparserfromhell >= 0.5", # Parsing wikicode for manipulation
  28. "requests >= 2.21.0", # Wiki API requests
  29. "requests_oauthlib >= 1.2.0", # API authentication via OAuth
  30. ]
  31. extra_deps = {
  32. "crypto": [
  33. "py-bcrypt >= 0.4", # Hashing the bot key in the config file
  34. "pycrypto >= 2.6.1", # Storing bot passwords + keys in the config file
  35. ],
  36. "sql": [
  37. "oursql >= 0.9.3.2", # Interfacing with MediaWiki databases
  38. ],
  39. "copyvios": [
  40. "beautifulsoup4 >= 4.6.0", # Parsing/scraping HTML
  41. "cchardet >= 2.1.1", # Encoding detection for BeautifulSoup
  42. "lxml >= 3.8.0", # Faster parser for BeautifulSoup
  43. "nltk >= 3.2.4", # Parsing sentences to split article content
  44. "oauth2 >= 1.9.0", # Interfacing with Yahoo! BOSS Search
  45. "pdfminer >= 20140328", # Extracting text from PDF files
  46. "tldextract >= 2.1.0", # Getting domains for the multithreaded workers
  47. ],
  48. "time": [
  49. "pytz >= 2017.2", # Handling timezones for the !time IRC command
  50. ],
  51. }
  52. dependencies = required_deps + sum(extra_deps.values(), [])
  53. with open("README.rst") as fp:
  54. long_docs = fp.read()
  55. setup(
  56. name = "earwigbot",
  57. packages = find_packages(exclude=("tests",)),
  58. entry_points = {"console_scripts": ["earwigbot = earwigbot.util:main"]},
  59. install_requires = dependencies,
  60. test_suite = "tests",
  61. version = __version__,
  62. author = "Ben Kurtovic",
  63. author_email = "ben.kurtovic@gmail.com",
  64. url = "https://github.com/earwig/earwigbot",
  65. description = "EarwigBot is a Python robot that edits Wikipedia and interacts with people over IRC.",
  66. long_description = long_docs,
  67. download_url = "https://github.com/earwig/earwigbot/tarball/v{0}".format(__version__),
  68. keywords = "earwig earwigbot irc wikipedia wiki mediawiki",
  69. license = "MIT License",
  70. classifiers = [
  71. "Development Status :: 3 - Alpha",
  72. "Environment :: Console",
  73. "Intended Audience :: Developers",
  74. "License :: OSI Approved :: MIT License",
  75. "Natural Language :: English",
  76. "Operating System :: OS Independent",
  77. "Programming Language :: Python :: 2.7",
  78. "Topic :: Communications :: Chat :: Internet Relay Chat",
  79. "Topic :: Internet :: WWW/HTTP"
  80. ],
  81. )