-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
85 lines (81 loc) · 1.97 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
[tool.poetry]
name = "agora-server"
version = "0.1.0"
description = ""
authors = ["Null Flancian <[email protected]>"]
# for now?
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
black = "^23.3.0"
bleach = "^6.0.0"
cachelib = "^0.10.2"
cachetools = "^5.3.1"
cachetools_ext = "0.0.8"
certifi = "^2023.5.7"
charset-normalizer = "^3.1.0"
click = "^8.1.3"
dateparser = "^1.1.8"
feedgen = "^0.9.0"
feedparser = "^6.0.10"
filetype = "^1.2.0"
greenlet = "^3.0.3"
idna = "^3.4"
importlib-metadata = "^6.7.0"
isodate = "^0.6.1"
itsdangerous = "^2.1.2"
jedi = "^0.18.2"
jsons = "^1.6.3"
lxml = "^4.9.2"
marko = "^2.0.0"
mdx-truly-sane-lists = "^1.3"
mypy-extensions = "^1.0.0"
packaging = "^23.1"
parso = "^0.8.3"
pathspec = "^0.11.1"
platformdirs = "^3.8.0"
pyparsing = "^3.1.0"
python-dateutil = "^2.8.2"
pytz = "^2023.3"
rdflib = "^6.3.2"
regex = "^2023.6.3"
requests = "^2.31.0"
sgmllib3k = "^1.0.0"
six = "^1.16.0"
text-unidecode = "^1.3"
tomli = "^2.0.1"
typing-extensions = "^4.7.0"
typish = "^1.9.3"
tzlocal = "^5.0.1"
unicode-slugify = "^0.1.5"
urllib3 = "^2.0.3"
webencodings = "^0.5.1"
zipp = "^3.15.0"
# Disabled while fixing an issue with non-existing wheels and source distribution.
# After talking to V, they tell me going forward we should import extism and then load a wasm module as per https://github.com/codegod100/orgora/releases/download/try3/orgora.wasm
# .org mode is not supported until I try this.
# orgora = "^0.1.1"
cachetools-ext = "^0.0.8"
flask = "^2.3.2"
flask-cors = "^4.0.0"
flask-markdown = "^0.3"
flask-wtf = "^1.1.1"
jinja2 = "^3.1.2"
markdown = "^3.4.3"
markupsafe = "^2.1.3"
python-levenshtein = "^0.25.1"
pyyaml = "^6.0"
unidecode = "^1.3.6"
werkzeug = "^2.3.6"
wtforms = "^3.0.1"
thefuzz = "^0.20.0"
smartypants = "^2.0.1"
mistralai = "^0.0.8"
pycryptodome = "^3.19.0"
org-python = "^0.3.2"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"