summaryrefslogtreecommitdiff
path: root/pkgs/pywikibot-scripts/setup.py
blob: 3ffc2401ec6d590d861a1ec62fcc3e9079fc0615 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup

setup(**{
    'name': 'scripts',
    'version': '0.0.0',
    'description': 'Scripts from pywikibot',
    'long_description': None,
    'author': None,
    'author_email': None,
    'maintainer': None,
    'maintainer_email': None,
    'url': None,
    'packages': ['scripts', 'scripts.i18n'],
    'package_data': {'': ['*']},
    'install_requires': [],
    'entry_points': {},
    'python_requires': '',
})