-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (76 loc) · 1.79 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
[tool.black]
line-length = 99
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| build
| dist
)/
'''
[tool.isort]
py_version = 311
line_length = 99
default_section = "THIRDPARTY"
combine_as_imports = true
order_by_type = true
profile = "black"
known_first_party = "fediverser"
[tool.poetry]
name = "fediverser"
version = "0.2.0"
description = "Tools to help bring content from legacy networks to the Fediverse"
authors = ["Raphael Lullis <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4"
praw = "^7.7.1"
pythorhead = "^0.25.2"
requests = "^2"
langdetect = "^1.0"
django = "^4.2"
django-environ = "^0.10"
django-allauth = "^65.0.2"
celery = "^5.4.0"
uvicorn = {extras = ["standard"], version = "^0.30.1"}
django-celery-beat = "^2.5"
psycopg2-binary = "^2.9"
redis = "^5.0.7"
requests-cache = "^1.1"
factory-boy = "^3.3.0"
django-redis = "^5.4.0"
django-extensions = "^3.2.3"
django-model-utils = "^4.3"
django-celery-results = "^2.5.1"
bcrypt = "^4.0"
pycryptodome = "^3"
pysass = "^0.1.0"
pyjwt = "^2.8.0"
django-rest-framework = "^0.1.0"
pyotp = "^2.9.0"
cloudscraper = "^1.2.71"
wagtail = "^6.1.2"
wagtail-autocomplete = "^0.11.0"
django-filter = "^24.2"
django-tree-queries = "^0.19.0"
feedparser = "^6.0.11"
djangorestframework-link-header-pagination = "^0.1.1"
django-rest-polymorphic = "^0.1.10"
django-countries = "^7.6.1"
django-invitations = "^2.1.0"
django-cors-headers = "^4.4.0"
drf-spectacular = {extras = ["sidecar"], version = "^0.27.2"}
[tool.poetry.group.dev.dependencies]
ipython = "^8.14.0"
black = "^23.7.0"
isort = "^5.12.0"
flake8 = "^6.1.0"
pytest = "^7.4"
pytest-env = "^1.1.3"
pytest-django = "^4.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"