-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (44 loc) · 1.02 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
[tool.black]
target-version = ['py39']
include = '\.pyi?$'
skip-string-normalization = true
exclude = '''
/(
\.git
)/
'''
[tool.poetry]
name = "iotserver"
version = "0.9.0"
description = "Simple IoT Server, Configuration Tool & Dashboard"
authors = ["Jonathan Bydendyk <[email protected]>"]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.2.4"
click = "^8.1.2"
django-map-widgets = "^0.3.3"
djangorestframework = "^3.14.0"
djangorestframework-gis = "^0.18"
paho-mqtt = "^1.6.1"
requests = "^2.31.0"
python-dotenv = "^0.20.0"
pymemcache = "^3.5.2"
psycopg2-binary = "^2.9.3"
django-cors-headers = "^3.12.0"
django-filter = "^22.1"
gunicorn = "^20.1.0"
cryptography = "^41.0.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-django = "^4.5.2"
black = "^22.12.0"
factory-boy = "^3.2.1"
pre-commit = "^2.21.0"
ipython = "^8.10.0"
coverage = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"