|
4 | 4 |
|
5 | 5 | Get and validate all Flask input parameters with ease.
|
6 | 6 | """
|
| 7 | + |
7 | 8 | from setuptools import setup
|
8 | 9 |
|
9 | 10 | with open("README.md", "r") as f:
|
10 | 11 | long_description = f.read()
|
11 | 12 |
|
12 | 13 | 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 |
| - |
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 | + |
| 20 | + description="Get and validate all Flask input parameters with ease.", |
20 | 21 | 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"], |
25 | 24 | zip_safe=False,
|
26 |
| - package_data={'': ['templates/fpv_default_docs.html']}, |
| 25 | + package_data={"": ["templates/fpv_default_docs.html"]}, |
27 | 26 | include_package_data=True,
|
28 |
| - platforms='any', |
| 27 | + platforms="any", |
29 | 28 | install_requires=[
|
30 |
| - 'Flask', |
31 |
| - 'flask[async]', |
32 |
| - 'python-dateutil', |
33 |
| - 'jsonschema', |
| 29 | + "Flask", |
| 30 | + "flask[async]", |
| 31 | + "python-dateutil", |
| 32 | + "jsonschema", |
34 | 33 | ],
|
35 | 34 | python_requires=">=3.9,<3.13",
|
36 | 35 | 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 | + ], |
54 | 53 | )
|
0 commit comments