-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (31 loc) · 1.15 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup
version = '0.3.1'
repo = 'BatchUploadTools'
setup(
name='BatchUploadTools',
packages=['batchupload'],
install_requires=[
'future',
'mwparserfromhell',
'setuptools>50.0.0; python_version >= "3.6"',
'pywikibot==5.5.0; python_version >= "3.6"',
'pywikibot==3.0.20200703; python_version < "3.6"',
'pywikibot-sdc @ https://api.github.com/repos/lokal-profil/pywikibot-sdc/tarball/0.1.0'
],
version=version,
description='Framework for mass-importing images to Wikimedia Commons.',
author='André Costa',
author_email='',
url='https://github.com/lokal-profil/' + repo,
download_url='https://github.com/lokal-profil/' + repo + '/tarball/' + version,
keywords=['Wikimedia Commons', 'Wikimedia', 'Commons', 'pywikibot', 'API'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)