-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (49 loc) · 1.2 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
[tool.poetry]
name = "dante"
version = "0.1.0"
description = "Testing ranking algorithms to improve social cohesion."
authors = ["Giovanni Luca Ciampaglia <[email protected]>; Bao T. Truong <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "dante"}]
[tool.poetry.dependencies]
python = "^3.12"
aiodns = "^3.2.0"
aiohttp = "^3.9.5"
bertopic = "^0.16.2"
boto3 = "^1.34.130"
brotli = "^1.1.0"
celery = "^5.4.0"
celery-redbeat = "^2.2.0"
Cython = "*"
faker = "^25.9.1"
fastapi = "^0.111.0"
hdbscan = "^0.8.37"
psycopg2-binary = "^2.9.9"
pydantic = "^2.7.4"
ranking-challenge = "^3.2.8"
redis = "^5.0.6"
requests = "^2.32.3"
scikit-learn = "^1.5.0"
scipy = "^1.13.1"
sentence-transformers = "^3.0.1"
sqlalchemy = "^2.0.31"
torch = "^2.3.1"
unshorten-fast = {git = "https://github.com/glciampaglia/unshorten-fast.git"}
uvicorn = "^0.30.1"
platformdirs = "^4.2.2"
fakeredis = "^2.23.3"
pytest = "^8.3.3"
accelerate = "^0.34.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
flake8 = "^7.1.0"
black = "^24.4.2"
isort = "^5.13.2"
requests = "^2.32.3"
ipython = "^8.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"