Skip to content

Commit 74397eb

Browse files
committed
Minor fixes in the setup script
1 parent 436be20 commit 74397eb

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
exclude Release.txt setversion.py
1+
exclude Release.md setversion.py
2+
include README.md
23
include DBUtils/Docs/*

Release.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Create a new DBUtils release:
44
* Check the documentation. If possible, update all translations.
55
(Chinese translation was too old and has been removed for the time being.)
66

7-
* Run all tests in DBUtils/Tests with all supported Python versions using tox.
7+
* Use tox to run all tests in DBUtils/Tests with all supported Python versions
8+
and to run flake8 in order to check the code style and quality.
89

910
* Check the examples in DBUtils/Examples with the current Webware version.
1011

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
description='Database connections for multi-threaded environments.',
2121
long_description=readme,
2222
long_description_content_type='text/markdown',
23-
classifiers=['Development Status :: 5 - Production/Stable',
23+
classifiers=[
24+
'Development Status :: 5 - Production/Stable',
2425
'Environment :: Web Environment',
2526
'Intended Audience :: Developers',
2627
'License :: OSI Approved :: MIT License',

setversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(self, *args):
6464
self._subs = list(args)
6565

6666
def add(self, search, replace):
67-
self._subs.append((re.compile(search,re.M), replace))
67+
self._subs.append((re.compile(search, re.M), replace))
6868

6969
def replaceInStr(self, data):
7070
for search, replace in self._subs:

0 commit comments

Comments
 (0)