-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.83 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 = "wiwik"
version = "0.1.0"
description = "What I wish I knew knowledge management system"
maintainers = ["Daniel Moran <[email protected]>"]
authors = ["Daniel Moran <[email protected]>"]
license = "Fair Source 50"
readme = "README.md"
packages = [
{ include = "forum" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
Django = "^5.0"
django-allauth = { extras = ["socialaccount"], version = "^65.0.1" }
pyparsing = "^3.0"
python-dateutil = "^2.8"
sqlparse = "^0.5"
nltk = "^3.9"
django-tasks-scheduler = "^3.0.0b2" # Async jobs scheduler using redis
django-admin-numeric-filter = "^0.1" # Django-admin filters
django-admin-rangefilter = "^0.13" # Django-admin filters
django-model-utils = "^5.0" # Django-admin filters
django-ipware = "^7.0" # For identifying IP location
geoip2 = "^4.8" # For identifying IP location
pillow = "^11" # For image field
scikit-learn = "^1.4" # For similarity TF-IDF
numpy = "^2.0" # For similarity TF-IDF
gunicorn = "^23.0" # Running configuration
python-dotenv = "^1.0" # Running configuration
# Frontend related
django-compressor = "^4.3"
django-crispy-forms = "^2.1"
crispy-bootstrap5 = "^2024.2"
markdown = "^3.4"
bleach = "^6.0"
pymdown-extensions = "^10.4"
# 3rd party integrations
slack-sdk = "^3.33"
meilisearch = "^0.32" # meilisearch driver
redis = "^5.0" # Redis driver, for redis-cache
psycopg = "^3.1"
django-constance = "^3.1"
[tool.poetry.dev-dependencies]
poetry = "^1.8"
fakeredis = "^2.26"
coverage = "^7.6"
django-coverage-plugin = "^3"
beautifulsoup4 = "^4.12"
django-debug-toolbar = "^4.4"
db-to-sqlite = "^1.4"
flake8-pyproject = "^1.2.3"
behave-django = "^1.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 120
exclude = [
'**/migrations/**',
'__init__.py',
'.venv/**',
'private/**'
]