forked from loverajoel/sqlalchemy-elasticquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1014 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
28
29
30
31
32
33
34
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='sqlalchemy-elasticquery',
version='0.0.3',
description='Use ElasticSearch query search in SQLAlchemy.',
url='https://github.com/loverajoel/sqlalchemy-elasticquery',
license='MIT',
author='Joel Lovera',
author_email='[email protected]',
packages=['sqlalchemy_elasticquery'],
include_package_data=True,
install_requires=[
'Flask>=0.10',
'SQLAlchemy>=0.7.8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database'
'Topic :: Software Development :: Libraries :: Python Modules'
]
)