|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools", "wheel", "Cython"] |
| 2 | +requires = ["setuptools", "wheel", "cython"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "flask_inputfilter" |
| 7 | +version = "0.2.0a1" |
| 8 | +authors = [ |
| 9 | + { name = "Leander Cain Slotosch", email = "[email protected]" } |
| 10 | +] |
| 11 | +description = "A library to filter and validate input data in Flask applications" |
| 12 | +readme = "README.rst" |
| 13 | +license = { file="LICENSE" } |
| 14 | +requires-python = ">=3.7" |
| 15 | +dependencies = [ |
| 16 | + "flask>=2.1", |
| 17 | + "pillow>=8.0.0", |
| 18 | + "requests>=2.22.0", |
| 19 | + "typing_extensions>=3.6.2" |
| 20 | +] |
| 21 | +classifiers = [ |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Programming Language :: Python :: 3.14", |
| 24 | + "Programming Language :: Python :: 3.13", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.10", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.8", |
| 30 | + "Programming Language :: Python :: 3.7", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Documentation = "https://leandercs.github.io/flask-inputfilter" |
| 35 | +Source = "https://github.com/LeanderCS/flask-inputfilter" |
| 36 | + |
5 | 37 | [tool.black] |
6 | 38 | line-length = 79 |
7 | 39 |
|
|
0 commit comments