-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.45 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "FlaskTester"
version = "4.3"
authors = [ { name = "Fabien Coelho", email = "[email protected]" } ]
description = "Pytest fixtures for Flask internal and external authenticated tests"
readme = "README.md"
license = { text = "CC0" }
requires-python = ">=3.10"
dependencies = [
"requests",
"pytest"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
"Environment :: Web Environment",
"Framework :: Flask",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
repository = "https://github.com/zx80/flask-tester"
documentation = "https://zx80.github.io/flask-tester/"
issues = "https://github.com/zx80/flask-tester/issues"
package = "https://pypi.org/project/FlaskTester/"
[project.optional-dependencies]
# various dev tools
dev = [
# static checks…
"mypy", "pyright", "ruff", "coverage", "pymarkdownlnt!=0.9.5",
# packaging
"build", "twine", "wheel",
# tests
"types-flask", "types-requests", "FlaskSimpleAuth>=33.0", "bcrypt", "pydantic"
]
# documentation generation
doc = ["sphinx", "sphinx_rtd_theme", "sphinx-autoapi", "sphinx-lint", "myst_parser"]
[tool.setuptools]
py-modules = [ "FlaskTester" ]
[tool.black]
line-length = 100
target-version = ["py310"]