-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
100 lines (94 loc) · 2.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.black]
py39 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
| node_modules
)/
'''
# settings to make isort compatible with how black formats imports
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.poetry]
name = "odl-video-service"
version = "0.70.0"
description = "building blocks for a basic video service for ODL"
authors = ["Your Name <[email protected]>"]
license = "BSD-3"
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.9.0"
boto3 = "^1.12.26"
celery = "^5.2.2"
celery-redbeat = "^2.0.0"
cryptography = "^39.0"
dj-database-url = "^0.5.0"
dj-static = "^0.0.6"
django = "^2.2.28"
django-compat = "^1.0.15"
django-elastic-transcoder = {git = "https://github.com/mitodl/django-elastic-transcoder", tag = "v0.9.7"}
django-encrypted-model-fields = "^0.6.5"
django-hijack = "^2.1.10"
django-hijack-admin = "^2.1.10"
django-redis = "^5.2.0"
django-shibboleth-remoteuser = {git = "https://github.com/Brown-University-Library/django-shibboleth-remoteuser", tag = "v0.12"}
django-webpack-loader = "^0.7.0"
djangorestframework = "^3.11.2"
google-api-python-client = "^2.58.0"
google-auth = "^2.11.0"
google-auth-oauthlib = "^0.8.0"
html5lib = "^0.999999999"
httplib2 = "^0.22.0"
ipython = "^7.16.3"
mit-moira = {git = "https://github.com/mitodl/mit-moira", tag = "v0.0.4"}
newrelic = "^8.8.0"
psycopg2 = "2.8.6"
pycountry = "^22.3.5"
python-dateutil = "^2.8.1"
pytz = "^2023.3"
redis = "^4.4.4"
requests = "^2.20.0"
sentry-sdk = "^0.20.0"
smart-open = "^1.5.7"
structlog = "^20.1.0"
structlog-sentry = "^1.2.2"
urllib3 = "^1.24.2"
uwsgi = "2.0.26"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
bpython = "*"
ddt = "^1.6.0"
django-debug-toolbar = "<4"
factory-boy = "^3.2.1"
faker = "^18.7.0"
ipdb = "<0.14"
isort = "^5.10.1"
moto = "^1.3.16"
nplusone = "^1.0.0"
pdbpp = "^0.10.3"
pylint = "2.14.4"
pylint-django = "^2.5.3"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
pytest-django = "^4.5.2"
pytest-env = "^0.8.0"
pytest-mock = "^3.10.0"
pytest-pep8 = "^1.0.6"
pytest-pylint = "^0.19.0"
requests-mock = "^1.10.0"
semantic-version = "^2.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"