-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 976 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='flask-msearch',
version='0.2.9.4',
url='https://github.com/honmaple/flask-msearch',
license='BSD',
author='honmaple',
author_email='mail@honmaple.com',
description='full text search with whoosh for flask',
long_description='Please visit https://github.com/honmaple/flask-msearch',
packages=['flask_msearch'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['Flask', 'Flask-SQLAlchemy'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
])