|
| 1 | +[project] |
| 2 | +name = "zeep" |
| 3 | +version = "4.2.1" |
| 4 | +description = "A Python SOAP client" |
| 5 | +readme = "README.md" |
| 6 | +license = { text = "MIT" } |
| 7 | +authors = [ |
| 8 | + { name = "Michael van Tellingen", email = "michaelvantellingen@gmail.com" } |
| 9 | +] |
| 10 | +requires-python = ">=3.8" |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "License :: OSI Approved :: MIT License", |
| 14 | + "Programming Language :: Python :: 3.8", |
| 15 | + "Programming Language :: Python :: 3.9", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | + "Programming Language :: Python :: Implementation :: CPython", |
| 20 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 21 | +] |
| 22 | +dependencies = [ |
| 23 | + "attrs>=17.2.0", |
| 24 | + "isodate>=0.5.4", |
| 25 | + "lxml>=4.6.0", |
| 26 | + "platformdirs>=1.4.0", |
| 27 | + "requests>=2.7.0", |
| 28 | + "requests-toolbelt>=0.7.1", |
| 29 | + "requests-file>=1.5.1", |
| 30 | + "pytz", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Repository = "https://github.com/mvantellingen/python-zeep" |
| 35 | +Documentation = "https://docs.python-zeep.org" |
| 36 | +Changelog = "https://github.com/mvantellingen/python-zeep/blob/main/CHANGES" |
| 37 | + |
| 38 | +[project.optional-dependencies] |
| 39 | +docs = ["sphinx>=1.4.0"] |
| 40 | +test = [ |
| 41 | + "coverage[toml]==7.6.2", |
| 42 | + "freezegun==1.5.1", |
| 43 | + "pretend==1.0.9", |
| 44 | + "pytest-cov==5.0.0", |
| 45 | + "pytest-httpx", |
| 46 | + "pytest-asyncio", |
| 47 | + "pytest==8.3.3", |
| 48 | + "requests_mock==1.12.1", |
| 49 | + # Linting |
| 50 | + "isort==5.13.2", |
| 51 | + "flake8==7.1.1", |
| 52 | + "flake8-blind-except==0.2.1", |
| 53 | + "flake8-debugger==4.1.2", |
| 54 | + "flake8-imports==0.1.1", |
| 55 | +] |
| 56 | +async = ["httpx>=0.15.0"] |
| 57 | +xmlsec = ["xmlsec>=0.6.1"] |
| 58 | + |
1 | 59 | [build-system]
|
2 | 60 | requires = ["setuptools>=40.6.0", "wheel"]
|
3 | 61 | build-backend = "setuptools.build_meta"
|
@@ -31,3 +89,6 @@ markers = [
|
31 | 89 | "requests",
|
32 | 90 | "network: test case requires network connection",
|
33 | 91 | ]
|
| 92 | + |
| 93 | +[tool.flake8] |
| 94 | +max-line-length = 99 |
0 commit comments