|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- from setuptools import setup, find_packages
-
- from earwigbot import __version__
-
-
-
-
-
-
- dependencies = [
- "GitPython >= 0.3.2.RC1",
- "PyYAML >= 3.10",
- "beautifulsoup4 >= 4.1.1",
- "lxml >= 2.3.4",
- "mwparserfromhell >= 0.1",
- "nltk >= 2.0.2",
- "oursql >= 0.9.3",
- "oauth2 >= 1.5.211",
- "py-bcrypt >= 0.2",
- "pycrypto >= 2.5",
- "pytz >= 2012c",
- ]
-
- with open("README.rst") as fp:
- long_docs = fp.read()
-
- setup(
- name = "earwigbot",
- packages = find_packages(exclude=("tests",)),
- entry_points = {"console_scripts": ["earwigbot = earwigbot.util:main"]},
- install_requires = dependencies,
- test_suite = "tests",
- version = __version__,
- author = "Ben Kurtovic",
- author_email = "ben.kurtovic@verizon.net",
- url = "https://github.com/earwig/earwigbot",
- description = "EarwigBot is a Python robot that edits Wikipedia and interacts with people over IRC.",
- long_description = long_docs,
- download_url = "https://github.com/earwig/earwigbot/tarball/v{0}".format(__version__),
- keywords = "earwig earwigbot irc wikipedia wiki mediawiki",
- license = "MIT License",
- classifiers = [
- "Development Status :: 3 - Alpha",
- "Environment :: Console",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: MIT License",
- "Natural Language :: English",
- "Operating System :: OS Independent",
- "Programming Language :: Python :: 2.7",
- "Topic :: Communications :: Chat :: Internet Relay Chat",
- "Topic :: Internet :: WWW/HTTP"
- ],
- )
|