-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
104 lines (98 loc) · 3.24 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[tool.mypy]
python_version = "3.10"
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
ignore_missing_imports = true
disallow_untyped_defs = true
strict_optional = true
strict = true
[[tool.mypy.overrides]]
module = "c2cgeoportal_admin.*"
disallow_untyped_defs = false
[tool.black]
line-length = 110
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 110
known_local_folder = ["c2cgeoportal_commons", "c2cgeoportal_geoportal", "c2cgeoportal_admin", "geomapfish_qgisserver", "{{cookiecutter.package}}_geoportal"]
[tool.poetry]
name = "c2cgeoportal"
version = "0.0.0"
description = "Not used"
authors = []
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
alembic = "1.14.0" # geoportal
"c2c.template" = "2.4.2" # geoportal
c2cgeoform = "2.4.4" # commons
colander = "2.0" # commons, admin
ColanderAlchemy = "0.3.4" # commons
cookiecutter = "2.6.0" # geoportal
deform = "2.0.15" # commons, admin
defusedxml = "0.7.1" # geoportal
"dogpile.cache" = "1.3.3" # geoportal
Fiona = "1.10.1" # geoportal raster
GeoAlchemy2 = "0.15.2" # commons, geoportal
geojson = "3.1.0" # geoportal
getitfixed = "1.0.29" # geoportal
isodate = "0.7.2" # geoportal
Mako = "1.3.6" # geoportal
OWSLib = "0.32.0" # geoportal
papyrus = "2.6.2" # commons, geoportal
passwordgenerator = "1.5.1" # geoportal
psycopg2 = "2.9.10" # geoportal
pycryptodome = "3.21.0" # geoportal
pyproj = "3.7.0" # admin, other?
pyotp = "2.9.0" # geoportal
pyramid = "2.0.2" # geoportal
pyramid_debugtoolbar = "4.12.1" # geoportal
pyramid-jinja2 = "2.10.1" # admin
pyramid_mako = "1.1.0" # geoportal
pyramid_multiauth = "1.0.2" # geoportal
pyramid_tm = "2.5" # geoportal
python-dateutil = "2.9.0.post0" # geoportal
PyYAML = "6.0.1" # geoportal
rasterio = "1.4.2" # geoportal raster
requests = "2.32.3" # geoportal
redis = "5.2.0" # geoportal cache
Shapely = "2.0.6" # geoportal
SQLAlchemy = "2.0.36"
transaction = "5.0" # commons, geoportal
translationstring = "1.4" # admin
"zope.event" = "5.0" # commons, geoportal
c2cwsgiutils = { version = "6.1.3", extras = ["broadcast", "standard", "oauth2", "debug"] }
oauthlib = "3.2.2"
tilecloud = "1.12.3" # geoportal
azure-storage-blob = "12.23.1"
# simple_openid_connect = '1.0.1' # geoportal
simple_openid_connect = { git = "https://github.com/sbrunner/py_simple_openid_connect.git", branch = "allows-pkce" } # geoportal
pkce = '1.0.3' # geoportal
basicauth = "1.0.0"
prospector = { extras = ["with_mypy", "with_bandit", "with_pyroma"], version = "1.13.0" }
prospector-profile-duplicated = "1.6.0"
prospector-profile-utils = "1.9.1"
beautifulsoup4 = "4.12.3"
[tool.poetry.group.dev.dependencies]
Babel = "2.16.0" # i18n
beautifulsoup4 = "4.12.3" # admin tests
Jinja2 = "3.1.4" # c2c.template
lingva = "5.0.4" # i18n
PasteScript = "3.6.0" # geoportal pcreate
polib = "1.2.0" # i18n
pykwalify = "1.8.0" # Validate config
pytest = "8.3.3" # tests
WebTest = "3.0.1" # admin tests
types-pytz = "2024.2.0.20241003"
types-pyyaml = "6.0.12.20240917"
types-python-dateutil = "2.9.0.20241003"
types-requests = "2.32.0.20241016"
types-setuptools = "75.3.0.20241112"
mappyfile = "1.0.2"
# To be able to upgrade project from version <= 2.8
c2cciutils = { version = "1.5.8", extras = ["checks"] }
pre-commit = "4.0.1"
mapbox-vector-tile = "2.1.0"
responses = "0.25.3"
waitress = "3.0.1"