-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
34 lines (32 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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"
],
)