Skip to content

Commit 1e2a33d

Browse files
committed
update module version
1 parent 94b9a25 commit 1e2a33d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

example/example.py

Whitespace-only changes.

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""
77
:authors: co0lc0der
8-
:license: MIT, see LICENSE file
8+
:license: MIT
99
:copyright: (c) 2022 co0lc0der
1010
"""
1111

@@ -34,11 +34,13 @@
3434
version
3535
),
3636

37-
license='MIT, see LICENSE.md file',
37+
license='MIT',
3838

3939
packages=['simple-query-builder'],
4040

4141
classifiers=[
42+
'Topic :: Database',
43+
'Topic :: Database :: Database Engines/Servers',
4244
'License :: OSI Approved :: MIT License',
4345
'Operating System :: OS Independent',
4446
'Intended Audience :: End Users/Desktop',
@@ -51,5 +53,6 @@
5153
'Programming Language :: Python :: 3.10',
5254
'Programming Language :: Python :: Implementation :: PyPy',
5355
'Programming Language :: Python :: Implementation :: CPython',
56+
'Programming Language :: SQL'
5457
]
5558
)

simple-query-builder/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""
22
:authors: co0lc0der
3-
:license: MIT, see LICENSE file
3+
:license: MIT
44
:copyright: (c) 2022 co0lc0der
55
"""
66

77
from .querybuilder import *
88

99
__author__ = 'co0lc0der'
10-
__version__ = '0.3.0'
10+
__version__ = '0.3.1'
1111
__email__ = '[email protected]'

simple-query-builder/querybuilder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
:authors: co0lc0der
3-
:license: MIT License, see LICENSE file
3+
:license: MIT
44
:copyright: (c) 2022 co0lc0der
55
"""
66

0 commit comments

Comments
 (0)