-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
70 lines (63 loc) · 1.52 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
[tool.poetry]
name = "hackman"
version = "0.1.1"
description = ""
authors = ["adisbladis <[email protected]>"]
license = "GPL-2.0-only"
packages = [
{ include = "dsl_lights" },
{ include = "dsl_log" },
{ include = "dsl_occupied" },
{ include = "dsl_buttons" },
{ include = "hackman" },
{ include = "hackman_door" },
{ include = "hackman_notifier" },
{ include = "hackman_payments" },
{ include = "hackman_rfid" },
]
[tool.poetry.scripts]
dsl-lights = 'dsl_lights:main'
dsl-log = 'dsl_log:main'
dsl-occupied = 'dsl_occupied:main'
dsl-buttons = 'dsl_buttons:main'
hackman = 'hackman.cmd:hackman'
hackman-manage = 'hackman.manage:main'
[tool.poetry.dependencies]
python = "^3.9"
hidapi = "^0.14.0"
Django = "^4.2.13"
Jinja2 = "^3.1.4"
gunicorn = "^22.0.0"
django-redis = "^5.2.0"
IPy = "^1.01"
django-cors-headers = "^3.13.0"
django-oauth-toolkit = "^2.2.0"
gevent = "^24.2.1"
pyserial = "^3.5"
mote = "^0.0.4"
psycopg2 = "^2.9.9"
setuptools = "^69.1.1"
rpi-gpio = "^0.7.1"
django = "^4.1.2"
ipy = "^1.1"
jinja2 = "^3.1.2"
cryptography = "42.0.4"
wheel = "^0.43.0"
poetry-plugin-export = "^1.8.0"
gpiozero = "^2.0.1"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
coverage = "^6.5.0"
django-stubs = "^1.12.0"
flake8 = "^7.0.0"
mypy = "^0.982"
pytest = "^8.2.2"
pytest-cov = "^4.0.0"
pytest-django = "^4.8.0"
types-redis = "^4.6.0.20240425"
types-requests = "^2.28.11.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true