Skip to content

Commit 3aa255e

Browse files
committed
Fix build
1 parent 1ecd39f commit 3aa255e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import find_packages, setup
22

33
setup(
44
name="flask_inputfilter",
5-
version="0.0.7.1",
5+
version="0.0.7.2",
66
author="Leander Cain Slotosch",
77
author_email="[email protected]",
88
description="A library to filter and validate input data in"
99
"Flask applications",
1010
long_description=open("README.rst").read(),
1111
long_description_content_type="text/x-rst",
1212
url="https://github.com/LeanderCS/flask-inputfilter",
13-
packages=find_packages(include=["flask_inputfilter", "flask_inputfilter.*"]),
13+
packages=find_packages(
14+
include=["flask_inputfilter", "flask_inputfilter.*"]
15+
),
1416
install_requires=[
1517
"Flask>=2.1",
1618
"pillow>=8.0.0",

0 commit comments

Comments
 (0)