-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.05 KB
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
[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 <jonathan@hacklab.co.za>"]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.2.26"
click = "^8.1.2"
django-map-widgets = "^0.3.3"
djangorestframework = "^3.15.2"
djangorestframework-gis = "^0.18"
paho-mqtt = "^1.6.1"
requests = "^2.32.4"
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 = "^22.0.0"
cryptography = "^41.0.4"
drf-spectacular = "^0.28.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-django = "^4.5.2"
black = "^24.3.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"