We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ecd39f commit 3aa255eCopy full SHA for 3aa255e
setup.py
@@ -1,16 +1,18 @@
1
-from setuptools import setup, find_packages
+from setuptools import find_packages, setup
2
3
setup(
4
name="flask_inputfilter",
5
- version="0.0.7.1",
+ version="0.0.7.2",
6
author="Leander Cain Slotosch",
7
author_email="[email protected]",
8
description="A library to filter and validate input data in"
9
"Flask applications",
10
long_description=open("README.rst").read(),
11
long_description_content_type="text/x-rst",
12
url="https://github.com/LeanderCS/flask-inputfilter",
13
- packages=find_packages(include=["flask_inputfilter", "flask_inputfilter.*"]),
+ packages=find_packages(
14
+ include=["flask_inputfilter", "flask_inputfilter.*"]
15
+ ),
16
install_requires=[
17
"Flask>=2.1",
18
"pillow>=8.0.0",
0 commit comments