Skip to content

Commit 5876281

Browse files
committed
Update version to 2.4.0
1 parent 9a7f186 commit 5876281

File tree

1 file changed

+33
-34
lines changed

1 file changed

+33
-34
lines changed

setup.py

+33-34
Original file line numberDiff line numberDiff line change
@@ -4,51 +4,50 @@
44
55
Get and validate all Flask input parameters with ease.
66
"""
7+
78
from setuptools import setup
89

910
with open("README.md", "r") as f:
1011
long_description = f.read()
1112

1213
setup(
13-
name='Flask-Parameter-Validation',
14-
version='2.3.1',
15-
url='https://github.com/Ge0rg3/flask-parameter-validation',
16-
license='MIT',
17-
author='George Omnet',
18-
author_email='[email protected]',
19-
description='Get and validate all Flask input parameters with ease.',
14+
name="Flask-Parameter-Validation",
15+
version="2.4.0",
16+
url="https://github.com/Ge0rg3/flask-parameter-validation",
17+
license="MIT",
18+
author="George Omnet",
19+
author_email="[email protected]",
20+
description="Get and validate all Flask input parameters with ease.",
2021
long_description=long_description,
21-
long_description_content_type='text/markdown',
22-
packages=['flask_parameter_validation',
23-
'flask_parameter_validation.exceptions',
24-
'flask_parameter_validation.parameter_types'],
22+
long_description_content_type="text/markdown",
23+
packages=["flask_parameter_validation", "flask_parameter_validation.exceptions", "flask_parameter_validation.parameter_types"],
2524
zip_safe=False,
26-
package_data={'': ['templates/fpv_default_docs.html']},
25+
package_data={"": ["templates/fpv_default_docs.html"]},
2726
include_package_data=True,
28-
platforms='any',
27+
platforms="any",
2928
install_requires=[
30-
'Flask',
31-
'flask[async]',
32-
'python-dateutil',
33-
'jsonschema',
29+
"Flask",
30+
"flask[async]",
31+
"python-dateutil",
32+
"jsonschema",
3433
],
3534
python_requires=">=3.9,<3.13",
3635
classifiers=[
37-
'Environment :: Web Environment',
38-
'Intended Audience :: Developers',
39-
'License :: OSI Approved :: MIT License',
40-
'Operating System :: OS Independent',
41-
'Programming Language :: Python',
42-
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.9',
44-
'Programming Language :: Python :: 3.10',
45-
'Programming Language :: Python :: 3.11',
46-
'Programming Language :: Python :: 3.12',
47-
'Development Status :: 5 - Production/Stable',
48-
'Framework :: Flask',
49-
'Topic :: Software Development :: Documentation',
50-
'Topic :: File Formats :: JSON :: JSON Schema',
51-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
52-
'Topic :: Software Development :: Libraries :: Python Modules'
53-
]
36+
"Environment :: Web Environment",
37+
"Intended Audience :: Developers",
38+
"License :: OSI Approved :: MIT License",
39+
"Operating System :: OS Independent",
40+
"Programming Language :: Python",
41+
"Programming Language :: Python :: 3",
42+
"Programming Language :: Python :: 3.9",
43+
"Programming Language :: Python :: 3.10",
44+
"Programming Language :: Python :: 3.11",
45+
"Programming Language :: Python :: 3.12",
46+
"Development Status :: 5 - Production/Stable",
47+
"Framework :: Flask",
48+
"Topic :: Software Development :: Documentation",
49+
"Topic :: File Formats :: JSON :: JSON Schema",
50+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
51+
"Topic :: Software Development :: Libraries :: Python Modules",
52+
],
5453
)

0 commit comments

Comments
 (0)