forked from sebastiandev/plyse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.51 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
42
43
44
45
from setuptools import setup
# Dynamically calculate the version based on plyse.VERSION.
setup(
name='plyse',
setup_requires = [
'pyparsing==2.4.0',
],
install_requires = [
'pyparsing==2.4.0',
],
version='1.0.2',
url='https://github.com/sebastiandev/plyse',
author='Sebastian Packmann',
author_email='[email protected]',
description=('A fully extensible query parser inspired on the lucene and gmail sintax'),
license='MIT',
package_dir={
'plyse': 'plyse',
'plyse.expressions': 'plyse/expressions',
'plyse.tests': 'plyse/tests',
},
packages=['plyse', 'plyse.expressions', 'plyse.tests'],
test_suite='tests',
keywords="search query parser lucene gmail syntax grammar",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Environment :: OSX Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)