-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
28 lines (26 loc) · 957 Bytes
/
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
from setuptools import setup
exec(open('wikitables/version.py').read())
setup(name='wikitables',
version=version,
packages=['wikitables'],
description='Import tables from any Wikipedia article',
author='Bradley Cicenas',
author_email='bradley@vektor.nyc',
url='https://github.com/bcicen/wikitables',
install_requires=[
'mwparserfromhell>=0.4.3',
'requests>=2.9.1',
'pycountry>=20.7.3'
],
license='http://opensource.org/licenses/MIT',
classifiers=(
'Natural Language :: English',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
),
keywords='wikipedia data cli commandline',
entry_points={'console_scripts': ['wikitables = wikitables.cli:main']}
)