-
Notifications
You must be signed in to change notification settings - Fork 103
/
pyproject.toml
72 lines (68 loc) · 1.36 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
[tool.black]
line-length = 100
target_version = ['py310']
include = 'pykeg/.*\.pyi?$'
exclude = '''
(
.*/migrations/.*
)
'''
[tool.poetry]
name = "kegbot"
version = "1.3.0"
description = "Kegbot Server"
authors = ["The Kegbot Project contributors"]
repository = "https://github.com/Kegbot/kegbot-server"
license = "MIT"
packages = [
{ include = "pykeg", from = "." }
]
[tool.poetry.dependencies]
python = "^3.10.4"
coloredlogs = "*"
dj-database-url = "*"
dj-email-url = "*"
django-bootstrap-pagination = "*"
django-crispy-forms = "*"
django-imagekit = "*"
django-redis = "*"
django-registration = "*"
gunicorn = "*"
httplib2 = "*"
isodate = "*"
oauthlib = "*"
pilkit = "*"
protobuf = "3.20.0"
python-gflags = "*"
pytz = "*"
redis = "*"
requests-oauthlib = "*"
requests = "*"
whitenoise = "*"
Django = "3.2.15"
Pillow = "*"
PyYAML = "*"
mysqlclient = "*"
addict = "*"
gevent = "*"
psycopg2 = "*"
future = "^0.18.2"
freezegun = "^1.2.1"
djangorestframework = "^3.13.1"
django-cors-headers = "^3.13.0"
rq = "^1.10.1"
django-rq = "^2.5.1"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
pytest = "*"
pytest-django = "*"
requests-mock = "*"
sphinx-issues = "*"
sphinx = "*"
vcrpy = "*"
furo = {git = "https://github.com/Kegbot/furo", rev = "kegbot/kegbot"}
sphinx-autobuild = "^2021.3.14"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"