forked from mediawiki-utilities/python-mwxml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.34 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
33
34
35
36
37
38
39
40
41
42
43
import os
from distutils.core import setup
from setuptools import find_packages
def requirements(fname):
return [line.strip()
for line in open(os.path.join(os.path.dirname(__file__), fname))]
setup(
name='mwxml',
version="0.2.1",
author='Aaron Halfaker',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'mwxml=mwxml.mwxml:main'
],
},
scripts=[],
url='http://pypi.python.org/pypi/mwxml',
license=open('LICENSE').read(),
description='A set of utilities for processing MediaWiki XML dump data.',
long_description=open('README.md').read(),
install_requires=requirements("requirements.txt"),
test_suite='nose.collector',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Topic :: Scientific/Engineering"
],
)