Initial commit
p# new file: runwikiq.sh
This commit is contained in:
34
mediawiki_dump_tools/Mediawiki-Utilities/setup.py
Normal file
34
mediawiki_dump_tools/Mediawiki-Utilities/setup.py
Normal file
@@ -0,0 +1,34 @@
|
||||
from distutils.core import setup
|
||||
|
||||
from setuptools import find_packages
|
||||
|
||||
setup(
|
||||
name='mediawiki-utilities',
|
||||
version="0.4.18",
|
||||
author='Aaron Halfaker',
|
||||
author_email='aaron.halfaker@gmail.com',
|
||||
packages=find_packages(),
|
||||
scripts=[],
|
||||
url='http://pypi.python.org/pypi/mediawiki-utilities',
|
||||
license=open('LICENSE').read(),
|
||||
description='A set of utilities for extracting and processing MediaWiki data.',
|
||||
long_description=open('README.rst').read(),
|
||||
install_requires=[
|
||||
"requests>=2.4",
|
||||
"pymysql>=0.6.2"],
|
||||
test_suite='nose.collector',
|
||||
classifiers=[
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Environment :: Other Environment",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: Text Processing :: Linguistic",
|
||||
"Topic :: Text Processing :: General",
|
||||
"Topic :: Utilities",
|
||||
"Topic :: Scientific/Engineering"
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user