forked from honmaple/flask-msearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (36 loc) · 1.28 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
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# **************************************************************************
# Copyright © 2017-2020 jianglin
# File Name: setup.py
# Author: jianglin
# Email: [email protected]
# Created: 2017-04-16 15:18:54 (CST)
# Last Update: Monday 2020-05-18 23:16:24 (CST)
# By:
# Description:
# **************************************************************************
from setuptools import setup
setup(
name='flask-msearch',
version='0.2.9',
url='https://github.com/honmaple/flask-msearch',
license='BSD',
author='honmaple',
author_email='[email protected]',
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',
])