-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
41 lines (36 loc) · 1.23 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
# -*- coding: utf-8 -*-
from setuptools import setup
from luqum import __version__
with open('README.rst', 'r') as f:
long_description = f.read()
with open('CHANGELOG.rst', 'r') as f:
long_description += "\n\n" + f.read()
setup(
name='luqum',
version=__version__,
description="A Lucene query parser generating ElasticSearch queries and more !",
long_description=long_description,
author='Jurismarches',
author_email='[email protected]',
url='https://github.com/jurismarches/luqum',
packages=[
'luqum',
'luqum.elasticsearch'
],
install_requires=[
'ply>=3.11',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)