Explorar el Código

Update dependencies, copyright year.

tags/v0.3
Ben Kurtovic hace 6 años
padre
commit
7d7d1aceea
Se han modificado 4 ficheros con 13 adiciones y 13 borrados
  1. +2
    -2
      earwigbot/__init__.py
  2. +1
    -1
      earwigbot/wiki/site.py
  3. +1
    -1
      earwigbot/wiki/sitesdb.py
  4. +9
    -9
      setup.py

+ 2
- 2
earwigbot/__init__.py Ver fichero

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2009-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -30,7 +30,7 @@ details. This documentation is also available `online
"""

__author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2009-2016 Ben Kurtovic"
__copyright__ = "Copyright (C) 2009-2017 Ben Kurtovic"
__license__ = "MIT License"
__version__ = "0.3.dev0"
__email__ = "ben.kurtovic@gmail.com"


+ 1
- 1
earwigbot/wiki/site.py Ver fichero

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2009-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/sitesdb.py Ver fichero

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2009-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal


+ 9
- 9
setup.py Ver fichero

@@ -1,7 +1,7 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2009-2016 Ben Kurtovic <ben.kurtovic@gmail.com>
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -26,8 +26,8 @@ from setuptools import setup, find_packages
from earwigbot import __version__

required_deps = [
"PyYAML >= 3.11", # Parsing config files
"mwparserfromhell >= 0.4.3", # Parsing wikicode for manipulation
"PyYAML >= 3.12", # Parsing config files
"mwparserfromhell >= 0.5", # Parsing wikicode for manipulation
]

extra_deps = {
@@ -39,16 +39,16 @@ extra_deps = {
"oursql >= 0.9.3.2", # Interfacing with MediaWiki databases
],
"copyvios": [
"beautifulsoup4 >= 4.4.1", # Parsing/scraping HTML
"cchardet >= 1.0.0", # Encoding detection for BeautifulSoup
"lxml >= 3.6.0", # Faster parser for BeautifulSoup
"nltk >= 3.2.1", # Parsing sentences to split article content
"beautifulsoup4 >= 4.6.0", # Parsing/scraping HTML
"cchardet >= 2.1.1", # Encoding detection for BeautifulSoup
"lxml >= 3.8.0", # Faster parser for BeautifulSoup
"nltk >= 3.2.4", # Parsing sentences to split article content
"oauth2 >= 1.9.0", # Interfacing with Yahoo! BOSS Search
"pdfminer >= 20140328", # Extracting text from PDF files
"tldextract >= 2.0.1", # Getting domains for the multithreaded workers
"tldextract >= 2.1.0", # Getting domains for the multithreaded workers
],
"time": [
"pytz >= 2016.4", # Handling timezones for the !time IRC command
"pytz >= 2017.2", # Handling timezones for the !time IRC command
],
}



Cargando…
Cancelar
Guardar