-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 851 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
29
30
31
32
#!/usr/bin/python
# -*- coding: latin-1 -*-
"""Setup script"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = 0.6
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
]
packages = ['uploadlibrary']
requires = ['argparse', 'lxml', 'pywikibot==2.0rc3']
setup(name='MassUploadLibrary',
version=version,
description='Managing a mass-upload to Wikimedia Commons.',
long_description=open('README.md').read(),
author='Jean-Frederic',
author_email='JeanFred@github',
license='MIT',
packages=packages,
install_requires=requires)