-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 985 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
from setuptools import setup
setup(
name='fill_broken_words',
version='0.0.2',
url='http://github.com/mvj3/fill_broken_words/',
license='MIT',
author='David Chen',
author_email=''.join(reversed("moc.liamg@emojvm")),
description='Fill broken words',
long_description="Consider there's a sentence, which has a half part of one word outside of it, e.g. ['How many s of pizza do you want?', ['lices']], so we need to fix it correctly.",
packages=['fill_broken_words',
'fill_broken_words/patterns_vs_word', ],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'etl_utils',
'pyenchant',
'bunch',
'split_block',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)