mirror of
https://github.com/wassname/flask-whooshee.git
synced 2026-09-11 12:11:40 +08:00
Add setup.py and manifest
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
include LICENSE
|
||||
include README.md
|
||||
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
except:
|
||||
from distutils.core import setup
|
||||
|
||||
|
||||
setup(
|
||||
name = 'flask-whooshee',
|
||||
version = '0.0.1',
|
||||
description = 'Flask - SQLAlchemy - Whoosh integration',
|
||||
long_description = 'Flask - SQLAlchemy - Whoosh integration that allows to create and search custom indexes.',
|
||||
keywords = 'flask, sqlalchemy, whoosh',
|
||||
author = 'Bohuslav "Slavek" Kabrda',
|
||||
author_email = 'bkabrda@redhat.com',
|
||||
url = 'https://github.com/bkabrda/flask-whooshee',
|
||||
license = 'GPLv2+',
|
||||
py_modules = ['flask_whooshee', ],
|
||||
install_requires=['flask-sqlalchemy',
|
||||
'whoosh',
|
||||
],
|
||||
setup_requires = [],
|
||||
classifiers = ['Development Status :: 3 - Alpha',
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user