forked from mittmannv8/fastapi-soap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.22 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
[tool.poetry]
name = "fastapi-soap"
version = "0"
description = ""
authors = ["Cleiton Junior Mittmann <[email protected]>"]
readme = "README.md"
packages = [{include = "fastapi_soap"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Framework :: Pydantic",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.urls]
"Homepage" = "https://github.com/mittmannv8/fastapi-soap"
"Documentation" = "https://github.com/mittmannv8/fastapi-soap"
"Bug Tracker" = "https://github.com/mittmannv8/fastapi-soap/issues"
[tool.poetry.dependencies]
python = ">=3.10"
pydantic = "<3"
lxml = "^4.9.2"
pydantic-xml = {extras = ["lxml"], version = "^2.9.0"}
fastapi = "^0.104.1"
[tool.poetry.group.dev.dependencies]
blue = "^0.9.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "git-tag"