Skip to content

Commit 53ece0c

Browse files
authored
Merge pull request #34 from cloudblue/updated-setup-py
Updated setup.py
2 parents 3fd1d4a + 7a7545a commit 53ece0c

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

Diff for: README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ The current parsing algorithm is [LALR(1)](https://www.wikiwand.com/en/LALR_pars
2727
Currently supported operators
2828
=============================
2929
1. Comparison (eq, ne, gt, ge, lt, le, like, ilike, search)
30-
0. List (in, out)
31-
0. Logical (and, or, not)
32-
0. Constants (null(), empty())
33-
0. Ordering (ordering)
34-
0. Select (select)
30+
2. List (in, out)
31+
3. Logical (and, or, not)
32+
4. Constants (null(), empty())
33+
5. Ordering (ordering)
34+
6. Select (select)
35+
7. Tuple (t)
3536

3637

3738
Documentation

Diff for: setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright © 2020 Ingram Micro Inc. All rights reserved.
2+
# Copyright © 2021 Ingram Micro Inc. All rights reserved.
33
#
44

55
from setuptools import find_packages, setup
@@ -39,12 +39,15 @@ def read_file(name):
3939
'Framework :: Django :: 3.0',
4040
'Framework :: Django :: 3.1',
4141
'Framework :: Django :: 3.2',
42+
'Framework :: Django :: 4.0',
4243
'Intended Audience :: Developers',
4344
'License :: OSI Approved :: Apache Software License',
4445
'Operating System :: Unix',
4546
'Programming Language :: Python :: 3.6',
4647
'Programming Language :: Python :: 3.7',
4748
'Programming Language :: Python :: 3.8',
49+
'Programming Language :: Python :: 3.9',
50+
'Programming Language :: Python :: 3.10',
4851
'Topic :: Text Processing :: Filters',
4952
],
5053
)

0 commit comments

Comments
 (0)