1 from distutils.core import setup
3 from setuptools import find_packages
6 name='mediawiki-utilities',
8 author='Aaron Halfaker',
9 author_email='aaron.halfaker@gmail.com',
10 packages=find_packages(),
12 url='http://pypi.python.org/pypi/mediawiki-utilities',
13 license=open('LICENSE').read(),
14 description='A set of utilities for extracting and processing MediaWiki data.',
15 long_description=open('README.rst').read(),
19 test_suite='nose.collector',
21 "Programming Language :: Python",
22 "Programming Language :: Python :: 3",
23 "Programming Language :: Python :: 3 :: Only",
24 "Environment :: Other Environment",
25 "Intended Audience :: Developers",
26 "License :: OSI Approved :: MIT License",
27 "Operating System :: OS Independent",
28 "Topic :: Software Development :: Libraries :: Python Modules",
29 "Topic :: Text Processing :: Linguistic",
30 "Topic :: Text Processing :: General",
32 "Topic :: Scientific/Engineering"