summaryrefslogtreecommitdiff
path: root/pkgs/pywikibot-scripts/setup.py
blob: b37eb2e39e380192b9afdb349a577a56812f2738 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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': {'': ['*'], 'scripts.i18n': ['*.json', '*/*.json']},
    'install_requires': [],
    'entry_points': {},
    'python_requires': '',
    'include_package_data': True,
})