-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 847 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
#!/usr/bin/env python
# encoding=utf-8
from setuptools import setup
import os
requirements = ['mwclient', 'gevent', 'markdown2']
path = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(path, 'README.md')).read()
setup(
name = 'WikiTranslationSpider',
version = '0.8.0.dev1', # Rember to also update __ver__ in client.py
description = 'MediaWiki API client',
long_description = README,
keywords = 'mediawiki spider translation',
author = 'wgjak47',
author_email = '[email protected]',
entry_points = {
'console_scripts': [
'Spider = WikiTranslationSpider.Spider:main'
]
},
url = 'https://github.com/wgjak47/WikiTranslationSpider',
license = 'MIT',
packages = ['WikiTranslationSpider'],
install_requires = requirements,
zip_safe = False
)