-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathsetup.py
29 lines (26 loc) · 1.15 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='autocomplete',
version='0.0.104',
description='tiny \'autocomplete\' tool using a "hidden markov model"',
keywords='autocomplete autosuggest suggest complete spell spellsuggest \
hidden markov model HMM hmm markov chain iPhone iphone suggest \
Google suggest search as you type searchsuggest type spell \
automatic spelling word suggest machine learning ai text \
conditional probability model probabilistic perspective \
Rodrigo Palacios rodrigo palacios im-rodrigo im_rodrigo \
rodricios',
author='Rodrigo Palacios',
author_email='[email protected]',
license='MIT',
packages=['autocomplete'],
install_requires=['bottle'],
url='https://github.com/rodricios/autocomplete',
scripts=['bin/autocomplete_server.py'],
package_data={'autocomplete': ['autocomplete/big.txt']},
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)