forked from gyllstromk/Flask-WhooshAlchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 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
30
31
32
33
34
35
36
37
38
39
40
41
"""
Flask-WhooshAlchemy
-------------
Whoosh extension to Flask/SQLAlchemy
"""
from setuptools import setup
import os
setup(
name='Flask-WhooshAlchemy',
version='0.6',
url='https://github.com/gyllstromk/Flask-WhooshAlchemy',
license='BSD',
author='Karl Gyllstrom',
author_email='[email protected]',
description='Whoosh extension to Flask/SQLAlchemy',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
py_modules=['flask_whooshalchemy'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[x.strip() for x in
open(os.path.join(os.path.dirname(__file__),
'requirements.txt'))],
tests_require=['Flask-Testing'],
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'
],
test_suite='test.test_all',
)