|
2 | 2 | from setuptools import Extension, find_packages, setup |
3 | 3 |
|
4 | 4 | setup( |
5 | | - name="flask_inputfilter", |
6 | | - version="0.2.0a1", |
7 | | - author="Leander Cain Slotosch", |
8 | | - |
9 | | - description="A library to filter and validate input data in " |
10 | | - "Flask applications", |
11 | 5 | long_description=open("README.rst").read(), |
12 | 6 | long_description_content_type="text/x-rst", |
13 | | - url="https://github.com/LeanderCS/flask-inputfilter", |
14 | 7 | packages=find_packages( |
15 | 8 | include=["flask_inputfilter", "flask_inputfilter.*"] |
16 | 9 | ), |
|
24 | 17 | ), |
25 | 18 | package_data={"flask_inputfilter": ["*.pyx", "*.py"]}, |
26 | 19 | include_package_data=True, |
27 | | - install_requires=[ |
28 | | - "flask>=2.1", |
29 | | - "pillow>=8.0.0", |
30 | | - "requests>=2.22.0", |
31 | | - "typing_extensions>=3.6.2", |
32 | | - ], |
33 | | - classifiers=[ |
34 | | - "Operating System :: OS Independent", |
35 | | - "Programming Language :: Python :: 3.14", |
36 | | - "Programming Language :: Python :: 3.13", |
37 | | - "Programming Language :: Python :: 3.12", |
38 | | - "Programming Language :: Python :: 3.11", |
39 | | - "Programming Language :: Python :: 3.10", |
40 | | - "Programming Language :: Python :: 3.9", |
41 | | - "Programming Language :: Python :: 3.8", |
42 | | - "Programming Language :: Python :: 3.7", |
43 | | - ], |
44 | | - python_requires=">=3.7", |
45 | | - project_urls={ |
46 | | - "Documentation": "https://leandercs.github.io/flask-inputfilter", |
47 | | - "Source": "https://github.com/LeanderCS/flask-inputfilter", |
48 | | - }, |
49 | 20 | ) |
0 commit comments