-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
75 lines (68 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "marshmallow_geojson"
version = "0.5.0"
description = "Marshmallow schema validation for GeoJson"
authors = [
"Aliaksandr Vaskevich <[email protected]>",
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/folt/marshmallow-geojson"
repository = "https://github.com/folt/marshmallow-geojson"
documentation = "https://github.com/folt/marshmallow-geojson"
keywords = [
"marshmallow",
"validation",
"geojson",
"schema",
"gis",
"geo",
"json",
"json-schema",
"rest",
"swagger",
"openapi"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: Software Development",
"Framework :: FastAPI",
"Framework :: Flask",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.8"
marshmallow = "^3.8.0"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.flake8]
extend-ignore = """
E203,
E266,
E501,
E731,
B903,
"""
max-line-length = 90
max-complexity = 18