forked from fengli/autocomplete-redis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (24 loc) · 772 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
from distutils.core import setup
long_description = open('README.md').read()
VERSION = '1.0'
setup(
name='autocomplete',
version=VERSION,
packages=['autocomplete',
],
description='Redis based autocompletion (build index and search query).',
long_description=long_description,
author='Feng Li',
author_email='[email protected]',
license='MIT License',
url='https://github.com/fengli/autocomplete-redis.git',
platforms=["any"],
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)