-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 loc) · 925 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup
version = '0.4.0'
repo = 'wikidata-stuff'
setup(
name='wikidataStuff',
packages=['wikidatastuff'],
install_requires=[
'pywikibot==3.0-dev',
'requests',
'future',
'PyMySQL'
],
dependency_links=['git+https://github.com/wikimedia/pywikibot-core.git#egg=pywikibot-3.0-dev'],
version=version,
description='Framework for mass-importing statements to Wikidata and/or for adding sources to existing statements.',
author='André Costa',
author_email='',
url='https://github.com/lokal-profil/' + repo,
download_url='https://github.com/lokal-profil/' + repo + '/tarball/' + version,
keywords=['Wikidata', 'Wikimedia', 'pywikibot', 'API'],
classifiers=[
'Programming Language :: Python :: 2.7'
'Programming Language :: Python :: 3.4'
],
)