This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.95 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
[tool.poetry]
name = "firweb"
version = "0.1.0"
description = "Website for FIRST Illinois Robotics"
authors = ["FIRST Illinois Robotics <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9, <4"
django-cms = ">=3.9,<3.11"
djangocms-admin-style = "3.1.1"
django-treebeard = ">=4.0,<5.0"
djangocms-text-ckeditor = ">=4.0,<5.1"
djangocms-link = ">=3.0,<4.0"
djangocms-icon = ">=2.0,<3.0"
djangocms-style = ">=3.0,<4.0"
djangocms-googlemap = ">=2.0,<3.0"
djangocms-video = ">=3.0,<4.0"
djangocms-file = ">=3.0,<4.0"
djangocms-picture = ">=3.0,<4.1"
djangocms-frontend = "0.9"
easy-thumbnails = "^2.7.1"
django-filer = ">=1.3"
Django = "<3.3"
django-classy-tags = ">=2.0"
django-sekizai = ">=2.0"
django-mptt = ">0.9"
html5lib = ">=1.0.1"
Pillow = ">=3.0"
six = "^1.16.0"
pytz = "^2022.1"
django-storages = { version = "^1.11.1", extras = ["google"]}
django-environ = "^0.8"
google-cloud-secret-manager = "^2.9.2"
mysqlclient = "^2.1"
google-cloud-storage = "^2.2.1"
google-cloud-logging = "^3.0"
appengine-python-standard = "^1.0.0"
# fix for compatability with django 3.2
aldryn-search = { git = "https://github.com/benzkji/aldryn-search.git", rev = "0a52d4c" }
Whoosh = "^2.7.4"
aldryn-common = "^1.0.5"
requests = "^2.27.0"
django-google-tag-manager = "0.0.5"
django-cors-headers = "3.11"
aldryn-apphooks-config = "0.6.0" # here until we can squash/optimize migrations 8/9 in events
django-computedfields = "0.1.7"
djangocms-redirect = "0.6.0"
[tool.poetry.dev-dependencies]
black = "22.3"
django-livereload-server = "0.4"
mypy = "0.942"
django-stubs = "^1.10.1"
types-requests = "^2.26.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
exclude = "migrations.*"
[[tool.mypy.overrides]]
module = "google.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "cms.*"
ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "firweb.settings"