-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (33 loc) · 1.05 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
import os
from setuptools import setup, find_packages
def readfile(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='wikipedia-ner',
version='0.0.24',
description='Python package for creating labeled examples from wiki dumps',
long_description=readfile('README.md'),
ext_modules=[],
packages=find_packages(),
author='Jonathan Raiman',
author_email='jraiman at mit dot edu',
url='https://github.com/JonathanRaiman/wikipedia_ner',
download_url='https://github.com/JonathanRaiman/wikipedia_ner',
keywords='XML, epub, tokenization, NLP',
license='MIT',
platforms='any',
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Topic :: Text Processing :: Linguistic',
],
# test_suite="something.test",
setup_requires = [],
install_requires=[
'xml_cleaner',
'epub_conversion'
],
include_package_data=True,
)